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