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

stdenv.mkDerivation rec {
  name = "ncompress-4.2.4.4";

  builder = ./builder.sh;

  patches = [ ./makefile.patch ];

  src = fetchurl {
    url = "mirror://sourceforge/project/ncompress/${name}.tar.gz";
    sha256 = "0yjiwv1hwb253x3m6r1dq2k7m5c9nz0ib2j7fnm3hark7y6s42xh";
  };

  meta = {
    homepage = http://ncompress.sourceforge.net/;
    license = "public domain";
    description = "A fast, simple LZW file compressor";
  };
}