nixpkgs/pkgs/applications/editors/flpsed/default.nix
2014-07-28 11:31:14 +02:00

20 lines
513 B
Nix

{stdenv, fetchurl, fltk13, ghostscript}:
stdenv.mkDerivation {
name = "flpsed-0.7.1";
src = fetchurl {
url = "http://www.ecademix.com/JohannesHofmann/flpsed-0.7.1.tar.gz";
sha256 = "16i3mjc1cdx2wiwfhnv3z2ywmjma9785vwl3l31izx9l51w7ngj3";
};
buildInputs = [ fltk13 ghostscript ];
meta = {
description = "WYSIWYG PostScript annotator";
homepage = "http://http://flpsed.org/flpsed.html";
license = stdenv.lib.licenses.gpl3;
platforms = stdenv.lib.platforms.mesaPlatforms;
};
}