about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/compression/lzop/default.nix
blob: 48645942038ffe3c19c8674b73e0ad8678807036 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl, lzo}:

stdenv.mkDerivation rec {
  name = "lzop-1.04";
  src = fetchurl {
    url = "https://www.lzop.org/download/${name}.tar.gz";
    sha256 = "0h9gb8q7y54m9mvy3jvsmxf21yx8fc3ylzh418hgbbv0i8mbcwky";
  };

  buildInputs = [ lzo ];

  meta = with stdenv.lib; {
    homepage = "http://www.lzop.org";
    description = "Fast file compressor";
    license = licenses.gpl2;
    platforms = platforms.unix;
  };
}