2018-10-03 05:27:02 +01:00
|
|
|
{ stdenv, fetchurl, fltk13, ghostscript }:
|
2013-08-12 13:14:42 +01:00
|
|
|
|
2017-02-23 14:12:56 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "flpsed";
|
2017-02-23 14:12:56 +00:00
|
|
|
version = "0.7.3";
|
2013-08-12 13:14:42 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://www.flpsed.org/${pname}-${version}.tar.gz";
|
2016-01-03 20:29:16 +00:00
|
|
|
sha256 = "0vngqxanykicabhfdznisv82k5ypkxwg0s93ms9ribvhpm8vf2xp";
|
2013-08-12 13:14:42 +01:00
|
|
|
};
|
|
|
|
|
2017-02-23 14:12:56 +00:00
|
|
|
buildInputs = [ fltk13 ];
|
2013-08-12 13:14:42 +01:00
|
|
|
|
2017-02-23 14:12:56 +00:00
|
|
|
postPatch = ''
|
|
|
|
# replace the execvp call to ghostscript
|
|
|
|
sed -e '/exec_gs/ {n; s|"gs"|"${stdenv.lib.getBin ghostscript}/bin/gs"|}' \
|
|
|
|
-i src/GsWidget.cxx
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "WYSIWYG PostScript annotator";
|
2020-03-27 23:05:50 +00:00
|
|
|
homepage = "https://flpsed.org/flpsed.html";
|
2017-02-23 14:12:56 +00:00
|
|
|
license = licenses.gpl3;
|
2018-09-22 22:13:43 +01:00
|
|
|
platforms = platforms.linux;
|
2019-12-05 07:29:48 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2013-08-12 13:14:42 +01:00
|
|
|
};
|
|
|
|
}
|