nixpkgs/pkgs/tools/graphics/nip2/default.nix
2019-06-03 18:55:50 -05:00

26 lines
745 B
Nix

{ stdenv, fetchurl, pkgconfig, glib, libxml2, flex, bison, vips, gnome2,
fftw, gsl, goffice, libgsf }:
stdenv.mkDerivation rec {
pname = "nip2";
version = "8.7.1";
src = fetchurl {
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; {
homepage = "https://github.com/libvips/nip2";
description = "Graphical user interface for VIPS image processing system";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ kovirobi ];
platforms = platforms.unix;
};
}