summary refs log tree commit diff
path: root/pkgs/tools/compression/ncompress/default.nix
blob: e2b03e6f38224ac908d8577913ff9f874952c120 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{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 = stdenv.lib.licenses.publicDomain;
    description = "A fast, simple LZW file compressor";
    platforms = stdenv.lib.platforms.unix;
  };
}