nixpkgs/pkgs/tools/compression/lzop/default.nix
Vladimír Čunát 76e6863cb1
lzop: 1.03 -> 1.04
This fixes build with gcc6.
2017-08-20 09:19:30 +02:00

19 lines
425 B
Nix

{stdenv, fetchurl, lzo}:
stdenv.mkDerivation rec {
name = "lzop-1.04";
src = fetchurl {
url = "http://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;
};
}