2015-03-29 03:05:06 +01: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; {
|
2019-12-08 16:50:31 +00:00
|
|
|
homepage = "https://github.com/kjn/lbzip2"; # Formerly http://lbzip2.org/
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "Parallel bzip2 compression utility";
|
2014-11-01 23:03:55 +00:00
|
|
|
license = licenses.gpl3;
|
2015-05-14 18:09:10 +01:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2014-11-01 23:03:55 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|