Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
639 B
Nix
32 lines
639 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ncompress";
|
|
version = "5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vapier";
|
|
repo = "ncompress";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Yhs3C5/kR7Ve56E84usYJprxIMAIwXVahLi1N9TIfj0=";
|
|
};
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
installTargets = "install_core";
|
|
|
|
postInstall = ''
|
|
mv $out/bin/uncompress $out/bin/uncompress-ncompress
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://ncompress.sourceforge.net/";
|
|
license = licenses.publicDomain;
|
|
description = "Fast, simple LZW file compressor";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|