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
47 lines
900 B
Nix
47 lines
900 B
Nix
{
|
|
lib,
|
|
asciidoctor,
|
|
fetchurl,
|
|
libpng,
|
|
netpbm,
|
|
stdenv,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "sng";
|
|
version = "1.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/sng/sng-${finalAttrs.version}.tar.xz";
|
|
hash = "sha256-yb37gPWhfbGquTN7rtZKjr6lwN34KRXGiHuM+4fs5h4=";
|
|
};
|
|
|
|
nativeBuildInputs = [ asciidoctor ];
|
|
|
|
buildInputs = [ libpng ];
|
|
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
];
|
|
|
|
makeFlags = [
|
|
"prefix=$(out)"
|
|
"MANDIR=$(outputMan)/share/man"
|
|
"RGBTXT=${netpbm.out}/share/netpbm/misc/rgb.txt"
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
homepage = "https://sng.sourceforge.net/";
|
|
description = "Minilanguage designed to represent the entire contents of a PNG file in an editable form";
|
|
license = lib.licenses.zlib;
|
|
mainProgram = "sng";
|
|
maintainers = with lib.maintainers; [
|
|
dezgeg
|
|
];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|