2013-08-12 14:14:42 +02:00
|
|
|
{stdenv, fetchurl, fltk13, ghostscript}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-12-11 08:52:31 +01:00
|
|
|
name = "flpsed-0.7.1";
|
2013-08-12 14:14:42 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-12-11 08:52:31 +01:00
|
|
|
url = "http://www.ecademix.com/JohannesHofmann/flpsed-0.7.1.tar.gz";
|
|
|
|
sha256 = "16i3mjc1cdx2wiwfhnv3z2ywmjma9785vwl3l31izx9l51w7ngj3";
|
2013-08-12 14:14:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ fltk13 ghostscript ];
|
|
|
|
|
|
|
|
meta = {
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "WYSIWYG PostScript annotator";
|
2013-08-12 14:14:42 +02:00
|
|
|
homepage = "http://http://flpsed.org/flpsed.html";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2013-10-07 17:36:47 +02:00
|
|
|
platforms = stdenv.lib.platforms.mesaPlatforms;
|
2013-08-12 14:14:42 +02:00
|
|
|
};
|
|
|
|
}
|