mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
21f17d69f6
Build-tested on x86_64 Linux & Mac.
19 lines
421 B
Nix
19 lines
421 B
Nix
{stdenv, fetchurl, lzo}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "lzop-1.03";
|
|
src = fetchurl {
|
|
url = http://www.lzop.org/download/lzop-1.03.tar.gz;
|
|
sha256 = "1jdjvc4yjndf7ihmlcsyln2rbnbaxa86q4jskmkmm7ylfy65nhn1";
|
|
};
|
|
|
|
buildInputs = [ lzo ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.lzop.org;
|
|
description = "Fast file compressor";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|