2016-09-11 22:24:51 +01:00
|
|
|
{ stdenv, fetchFromGitHub, gdk_pixbuf, scons, pkgconfig, gtk2, glib,
|
2017-12-19 04:18:53 +00:00
|
|
|
pcre, cfitsio, perl, gob2, vala, libtiff, json_glib }:
|
2011-04-06 11:00:48 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-09-22 12:55:14 +01:00
|
|
|
name = "giv-${version}";
|
|
|
|
version = "0.9.26";
|
2011-04-06 11:00:48 +01:00
|
|
|
|
2016-03-29 16:39:43 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dov";
|
|
|
|
repo = "giv";
|
2017-09-22 12:55:14 +01:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1sfm8j3hvqij6z3h8xz724d7hjqqbzljl2a6pp4yjpnnrxksnic2";
|
2011-04-06 11:00:48 +01:00
|
|
|
};
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2011-04-06 11:00:48 +01:00
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
sed -i s,/usr/bin/perl,${perl}/bin/perl, doc/eperl
|
2017-12-19 04:18:53 +00:00
|
|
|
sed -i s,/usr/local,$out, SConstruct
|
2011-04-06 11:00:48 +01:00
|
|
|
'';
|
|
|
|
|
2011-11-21 14:47:28 +00:00
|
|
|
patches = [ ./build.patch ];
|
2011-04-06 11:00:48 +01:00
|
|
|
|
|
|
|
buildPhase = "scons";
|
|
|
|
|
|
|
|
installPhase = "scons install";
|
|
|
|
|
2017-12-19 04:18:53 +00:00
|
|
|
nativeBuildInputs = [ scons pkgconfig vala perl gob2 ];
|
|
|
|
buildInputs = [ gdk_pixbuf gtk2 glib pcre cfitsio libtiff json_glib ];
|
2011-04-06 11:00:48 +01:00
|
|
|
|
2017-12-19 04:18:53 +00:00
|
|
|
meta = with stdenv.lib; {
|
2011-04-06 11:00:48 +01:00
|
|
|
description = "Cross platform image and hierarchical vector viewer based";
|
|
|
|
homepage = http://giv.sourceforge.net/giv/;
|
2017-12-19 04:18:53 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ viric ];
|
|
|
|
platforms = with platforms; linux;
|
2011-04-06 11:00:48 +01:00
|
|
|
};
|
|
|
|
}
|