depot/third_party/nixpkgs/pkgs/tools/compression/lzop/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

18 lines
428 B
Nix

{stdenv, fetchurl, lzo}:
stdenv.mkDerivation rec {
name = "lzop-1.04";
src = fetchurl {
url = "https://www.lzop.org/download/${name}.tar.gz";
sha256 = "0h9gb8q7y54m9mvy3jvsmxf21yx8fc3ylzh418hgbbv0i8mbcwky";
};
buildInputs = [ lzo ];
meta = with stdenv.lib; {
homepage = "http://www.lzop.org";
description = "Fast file compressor";
license = licenses.gpl2;
platforms = platforms.unix;
};
}