mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
21f17d69f6
Build-tested on x86_64 Linux & Mac.
22 lines
516 B
Nix
22 lines
516 B
Nix
{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;
|
|
};
|
|
}
|