nixpkgs/pkgs/applications/editors/flpsed/default.nix

20 lines
513 B
Nix
Raw Normal View History

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 = {
description = "WYSIWYG PostScript annotator";
2013-08-12 14:14:42 +02:00
homepage = "http://http://flpsed.org/flpsed.html";
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
};
}