nixpkgs/pkgs/tools/compression/lzop/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
494 B
Nix
Raw Normal View History

2021-07-21 13:43:46 +02:00
{ lib, stdenv, fetchurl, lzo }:
stdenv.mkDerivation rec {
2021-07-21 13:43:46 +02:00
pname = "lzop";
version = "1.04";
src = fetchurl {
2021-07-21 13:43:46 +02:00
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";
2021-07-21 13:43:46 +02:00
maintainers = with maintainers; [ ];
2015-06-10 13:00:11 +02:00
license = licenses.gpl2;
platforms = platforms.unix;
};
}