mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
22 lines
494 B
Nix
22 lines
494 B
Nix
{ lib, stdenv, fetchurl, lzo }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lzop";
|
|
version = "1.04";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.lzop.org/download/lzop-${version}.tar.gz";
|
|
sha256 = "0h9gb8q7y54m9mvy3jvsmxf21yx8fc3ylzh418hgbbv0i8mbcwky";
|
|
};
|
|
|
|
buildInputs = [ lzo ];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.lzop.org";
|
|
description = "Fast file compressor";
|
|
maintainers = with maintainers; [ ];
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|