depot/third_party/nixpkgs/pkgs/tools/graphics/sng/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

25 lines
668 B
Nix

{ stdenv, fetchurl, libpng, netpbm }:
stdenv.mkDerivation rec {
pname = "sng";
version = "1.1.0";
src = fetchurl {
url = "mirror://sourceforge/sng/sng-${version}.tar.gz";
sha256 = "06a6ydvx9xb3vxvrzdrg3hq0rjwwj9ibr7fyyxjxq6qx1j3mb70i";
};
buildInputs = [ libpng ];
configureFlags = [
"--with-rgbtxt=${netpbm.out}/share/netpbm/misc/rgb.txt"
];
meta = with stdenv.lib; {
description = "Minilanguage designed to represent the entire contents of a PNG file in an editable form";
homepage = "http://sng.sourceforge.net/";
license = licenses.zlib;
maintainers = [ maintainers.dezgeg ];
platforms = platforms.unix;
};
}