summary refs log tree commit diff
path: root/pkgs/tools/compression/lzop/default.nix
blob: 00eb5f265aafe9598bf429b322912347d7e128c3 (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;
  };
}