2021-01-17 09:17:16 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, glib, libxml2, flex, bison, vips, gnome2,
|
2016-06-28 12:46:40 +01:00
|
|
|
fftw, gsl, goffice, libgsf }:
|
2015-01-13 23:49:58 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-06-04 00:51:52 +01:00
|
|
|
pname = "nip2";
|
|
|
|
version = "8.7.1";
|
2015-01-13 23:49:58 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-06-04 00:51:52 +01:00
|
|
|
url = "https://github.com/libvips/nip2/releases/download/v${version}/nip2-${version}.tar.gz";
|
|
|
|
sha256 = "0l7n427njif53npqn02gfjjly8y3khbrkzqxp10j5vp9h97psgiw";
|
2015-01-13 23:49:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs =
|
2021-01-17 09:17:16 +00:00
|
|
|
[ pkg-config glib libxml2 flex bison vips
|
2016-09-11 22:24:51 +01:00
|
|
|
gnome2.gtk fftw gsl goffice libgsf
|
2015-01-13 23:49:58 +00:00
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-06-04 00:51:52 +01:00
|
|
|
homepage = "https://github.com/libvips/nip2";
|
2015-01-13 23:49:58 +00:00
|
|
|
description = "Graphical user interface for VIPS image processing system";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ kovirobi ];
|
2019-06-04 00:51:52 +01:00
|
|
|
platforms = platforms.unix;
|
2015-01-13 23:49:58 +00:00
|
|
|
};
|
|
|
|
}
|