48 lines
921 B
Nix
48 lines
921 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
|
||
|
AndersonTorres
|
||
|
];
|
||
|
platforms = lib.platforms.unix;
|
||
|
};
|
||
|
})
|