nixpkgs/pkgs/by-name/lz/lzop/package.nix

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

23 lines
506 B
Nix
Raw Normal View History

2021-07-21 11:43:46 +00:00
{ lib, stdenv, fetchurl, lzo }:
stdenv.mkDerivation rec {
2021-07-21 11:43:46 +00:00
pname = "lzop";
version = "1.04";
src = fetchurl {
2021-07-21 11:43:46 +00: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";
maintainers = [ ];
2024-04-26 11:35:31 +00:00
license = licenses.gpl2Plus;
platforms = platforms.unix;
2023-11-23 02:51:17 +00:00
mainProgram = "lzop";
};
}