nixpkgs/pkgs/tools/compression/pbzip2/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
845 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, bzip2 }:
2014-11-01 23:03:25 +00:00
let major = "1.1";
2016-04-12 12:07:56 +00:00
version = "${major}.13";
in
2014-11-01 23:03:25 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "pbzip2";
inherit version;
src = fetchurl {
2019-08-13 21:52:01 +00:00
url = "https://launchpad.net/pbzip2/${major}/${version}/+download/${pname}-${version}.tar.gz";
2016-04-12 12:07:56 +00:00
sha256 = "1rnvgcdixjzbrmcr1nv9b6ccrjfrhryaj7jwz28yxxv6lam3xlcg";
};
buildInputs = [ bzip2 ];
preBuild = "substituteInPlace Makefile --replace g++ c++";
2019-11-05 01:10:31 +00:00
installFlags = [ "PREFIX=$(out)" ];
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=reserved-user-defined-literal";
meta = with lib; {
homepage = "http://compression.ca/pbzip2/";
description = "A parallel implementation of bzip2 for multi-core machines";
2014-11-01 23:03:25 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [viric];
platforms = platforms.unix;
};
}