1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/editors/flpsed/default.nix

21 lines
574 B
Nix
Raw Normal View History

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