nixpkgs/pkgs/tools/graphics/nip2/default.nix

26 lines
745 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, glib, libxml2, flex, bison, vips, gnome2,
2016-06-28 11:46:40 +00:00
fftw, gsl, goffice, libgsf }:
stdenv.mkDerivation rec {
2019-06-03 23:51:52 +00:00
pname = "nip2";
version = "8.7.1";
src = fetchurl {
2019-06-03 23:51:52 +00:00
url = "https://github.com/libvips/nip2/releases/download/v${version}/nip2-${version}.tar.gz";
sha256 = "0l7n427njif53npqn02gfjjly8y3khbrkzqxp10j5vp9h97psgiw";
};
buildInputs =
[ pkgconfig glib libxml2 flex bison vips
gnome2.gtk fftw gsl goffice libgsf
];
meta = with stdenv.lib; {
2019-06-03 23:51:52 +00:00
homepage = "https://github.com/libvips/nip2";
description = "Graphical user interface for VIPS image processing system";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ kovirobi ];
2019-06-03 23:51:52 +00:00
platforms = platforms.unix;
};
}