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