depot/pkgs/tools/compression/lzop/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

22 lines
506 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 = [ ];
license = licenses.gpl2Plus;
platforms = platforms.unix;
mainProgram = "lzop";
};
}