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

21 lines
574 B
Nix
Raw Normal View History

2013-08-12 12:14:42 +00:00
{stdenv, fetchurl, fltk13, ghostscript}:
stdenv.mkDerivation {
2014-09-30 09:45:17 +00:00
name = "flpsed-0.7.2";
2013-08-12 12:14:42 +00:00
src = fetchurl {
2014-09-30 09:45:17 +00:00
url = "http://www.ecademix.com/JohannesHofmann/flpsed-0.7.2.tar.gz";
sha256 = "1132nlganr6x4f4lzcp9l0xihg2ky1l7xk8vq7r2l2qxs97vbif8";
2013-08-12 12:14:42 +00:00
};
buildInputs = [ fltk13 ghostscript ];
meta = {
description = "WYSIWYG PostScript annotator";
2013-08-12 12:14:42 +00:00
homepage = "http://http://flpsed.org/flpsed.html";
license = stdenv.lib.licenses.gpl3;
2013-10-07 15:36:47 +00:00
platforms = stdenv.lib.platforms.mesaPlatforms;
2014-09-30 09:45:17 +00:00
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
2013-08-12 12:14:42 +00:00
};
}