2021-01-15 22:18:51 +00:00
|
|
|
{lib, stdenv, fetchurl, lzo}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "lzop-1.04";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://www.lzop.org/download/${name}.tar.gz";
|
|
|
|
sha256 = "0h9gb8q7y54m9mvy3jvsmxf21yx8fc3ylzh418hgbbv0i8mbcwky";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ lzo ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "http://www.lzop.org";
|
|
|
|
description = "Fast file compressor";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|