1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/applications/editors/flpsed/default.nix

21 lines
574 B
Nix
Raw Normal View History

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