nixpkgs/pkgs/tools/compression/pbzip2/default.nix
Lluís Batlle i Rossell 4174b1a061 Adding pbzip2 (Parallel bzip2 for multicore machines)
svn path=/nixpkgs/trunk/; revision=19011
2009-12-17 11:10:01 +00:00

27 lines
649 B
Nix

{stdenv, fetchurl, bzip2}:
let name = "pbzip2";
version = "1.0.5";
in
stdenv.mkDerivation {
name = name + "-" + version;
src = fetchurl {
url = "http://compression.ca/${name}/${name}-${version}.tar.gz";
sha256 = "0vc9r6b2djhpwslavi2ykv6lk8pwf4lqb107lmapw2q8d658qpa1";
};
buildInputs = [ bzip2 ];
installPhase = ''
make install PREFIX=$out
'';
meta = {
homepage = http://compression.ca/pbzip2/;
description = "A parallel implementation of bzip2 for multi-core machines";
license = "free";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}