mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 21:57:02 +03:00
sng: init at 1.0.6
This commit is contained in:
parent
354ae976b6
commit
ebb060c351
25
pkgs/tools/graphics/sng/default.nix
Normal file
25
pkgs/tools/graphics/sng/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchurl, libpng, netpbm }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "sng-${version}";
|
||||
version = "1.0.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/sng/sng-${version}.tar.gz";
|
||||
sha256 = "04ym62qh8blsqigm3kr1shj9pn62y373wdaavk74rzwjzlhwhmq6";
|
||||
};
|
||||
|
||||
buildInputs = [ libpng ];
|
||||
|
||||
configureFlags = [
|
||||
"--with-rgbtxt=${netpbm}/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.linux;
|
||||
};
|
||||
}
|
@ -3022,6 +3022,10 @@ let
|
||||
|
||||
snabb = callPackage ../tools/networking/snabb { } ;
|
||||
|
||||
sng = callPackage ../tools/graphics/sng {
|
||||
libpng = libpng12;
|
||||
};
|
||||
|
||||
snort = callPackage ../applications/networking/ids/snort { };
|
||||
|
||||
solr = callPackage ../servers/search/solr { };
|
||||
|
Loading…
Reference in New Issue
Block a user