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

19 lines
458 B
Nix
Raw Normal View History

2015-03-29 02:05:06 +00:00
{ stdenv, fetchurl }:
2014-11-01 23:03:55 +00:00
stdenv.mkDerivation rec {
name = "lbzip2-2.5";
src = fetchurl {
url = "http://archive.lbzip2.org/${name}.tar.gz";
sha256 = "1sahaqc5bw4i0iyri05syfza4ncf5cml89an033fspn97klmxis6";
};
meta = with stdenv.lib; {
homepage = http://lbzip2.org/;
description = "Parallel bzip2 compression utility";
2014-11-01 23:03:55 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ abbradar ];
2014-11-01 23:03:55 +00:00
platforms = platforms.unix;
};
}