about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/flpsed/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/editors/flpsed/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/editors/flpsed/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/editors/flpsed/default.nix b/nixpkgs/pkgs/applications/editors/flpsed/default.nix
new file mode 100644
index 000000000000..bffa50643899
--- /dev/null
+++ b/nixpkgs/pkgs/applications/editors/flpsed/default.nix
@@ -0,0 +1,27 @@
+{ lib, stdenv, fetchurl, fltk13, ghostscript }:
+
+stdenv.mkDerivation rec {
+  pname = "flpsed";
+  version = "0.7.3";
+
+  src = fetchurl {
+    url = "http://www.flpsed.org/${pname}-${version}.tar.gz";
+    sha256 = "0vngqxanykicabhfdznisv82k5ypkxwg0s93ms9ribvhpm8vf2xp";
+  };
+
+  buildInputs = [ fltk13 ];
+
+  postPatch = ''
+    # replace the execvp call to ghostscript
+    sed -e '/exec_gs/ {n; s|"gs"|"${lib.getBin ghostscript}/bin/gs"|}' \
+        -i src/GsWidget.cxx
+  '';
+
+  meta = with lib; {
+    description = "WYSIWYG PostScript annotator";
+    homepage = "https://flpsed.org/flpsed.html";
+    license = licenses.gpl3;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ ];
+  };
+}