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