2009-03-28 19:28:59 +00:00
|
|
|
{stdenv, fetchurl, lzo}:
|
|
|
|
|
2017-08-20 08:19:30 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "lzop-1.04";
|
2009-03-28 19:28:59 +00:00
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.lzop.org/download/${name}.tar.gz";
|
2017-08-20 08:19:30 +01:00
|
|
|
sha256 = "0h9gb8q7y54m9mvy3jvsmxf21yx8fc3ylzh418hgbbv0i8mbcwky";
|
2009-03-28 19:28:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ lzo ];
|
|
|
|
|
2015-06-10 12:00:11 +01:00
|
|
|
meta = with stdenv.lib; {
|
2009-03-28 19:28:59 +00:00
|
|
|
homepage = http://www.lzop.org;
|
|
|
|
description = "Fast file compressor";
|
2015-06-10 12:00:11 +01:00
|
|
|
license = licenses.gpl2;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = platforms.unix;
|
2009-03-28 19:28:59 +00:00
|
|
|
};
|
|
|
|
}
|