lol
1{stdenv, fetchurl}:
2
3stdenv.mkDerivation rec {
4 name = "ncompress-4.2.4.4";
5
6 builder = ./builder.sh;
7
8 patches = [ ./makefile.patch ];
9
10 src = fetchurl {
11 url = "mirror://sourceforge/project/ncompress/${name}.tar.gz";
12 sha256 = "0yjiwv1hwb253x3m6r1dq2k7m5c9nz0ib2j7fnm3hark7y6s42xh";
13 };
14
15 meta = {
16 homepage = http://ncompress.sourceforge.net/;
17 license = stdenv.lib.licenses.publicDomain;
18 description = "A fast, simple LZW file compressor";
19 };
20}