2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, fltk13, ghostscript }:
|
2013-08-12 12:14:42 +00:00
|
|
|
|
2017-02-23 14:12:56 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "flpsed";
|
2017-02-23 14:12:56 +00:00
|
|
|
version = "0.7.3";
|
2013-08-12 12:14:42 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "http://www.flpsed.org/${pname}-${version}.tar.gz";
|
2016-01-03 20:29:16 +00:00
|
|
|
sha256 = "0vngqxanykicabhfdznisv82k5ypkxwg0s93ms9ribvhpm8vf2xp";
|
2013-08-12 12:14:42 +00:00
|
|
|
};
|
|
|
|
|
2017-02-23 14:12:56 +00:00
|
|
|
buildInputs = [ fltk13 ];
|
2013-08-12 12:14:42 +00:00
|
|
|
|
2017-02-23 14:12:56 +00:00
|
|
|
postPatch = ''
|
|
|
|
# replace the execvp call to ghostscript
|
2021-01-15 13:21:58 +00:00
|
|
|
sed -e '/exec_gs/ {n; s|"gs"|"${lib.getBin ghostscript}/bin/gs"|}' \
|
2017-02-23 14:12:56 +00:00
|
|
|
-i src/GsWidget.cxx
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2013-10-06 09:49:53 +00: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 21:13:43 +00:00
|
|
|
platforms = platforms.linux;
|
2019-12-05 07:29:48 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2013-08-12 12:14:42 +00:00
|
|
|
};
|
|
|
|
}
|