about summary refs log tree commit diff
path: root/pkgs/applications/editors/flpsed
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2018-09-22 23:13:43 +0200
committerDaiderd Jordan <daiderd@gmail.com>2018-09-25 22:31:20 +0200
commitcd78d0cc3ff97924bbc810b025fc0833e2b71916 (patch)
treec02901c1e8a5f3703b581bf5c1ca3115edca8c5e /pkgs/applications/editors/flpsed
parent6390b8b63e623d83558ff97102cd8a21ed99dd75 (diff)
downloadnixlib-cd78d0cc3ff97924bbc810b025fc0833e2b71916.tar
nixlib-cd78d0cc3ff97924bbc810b025fc0833e2b71916.tar.gz
nixlib-cd78d0cc3ff97924bbc810b025fc0833e2b71916.tar.bz2
nixlib-cd78d0cc3ff97924bbc810b025fc0833e2b71916.tar.lz
nixlib-cd78d0cc3ff97924bbc810b025fc0833e2b71916.tar.xz
nixlib-cd78d0cc3ff97924bbc810b025fc0833e2b71916.tar.zst
nixlib-cd78d0cc3ff97924bbc810b025fc0833e2b71916.zip
flpsed: mark linux only
Doesn't build on darwin and probably other platforms.

    GsWidget.H:26:3: error: 'Atom' does not name a type; did you mean 'tm'?
       Atom atoms[5];
       ^~~~
       tm
    GsWidget.cxx: In member function 'void GsWidget::setProps()':
    GsWidget.cxx:47:2: error: 'atoms' was not declared in this scope
      atoms[0] = XInternAtom(fl_display,"GHOSTVIEW" , false);
      ^~~~~

/cc ZHF #45961
Diffstat (limited to 'pkgs/applications/editors/flpsed')
-rw-r--r--pkgs/applications/editors/flpsed/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/flpsed/default.nix b/pkgs/applications/editors/flpsed/default.nix
index 67f789eee782..1c40b509bfe4 100644
--- a/pkgs/applications/editors/flpsed/default.nix
+++ b/pkgs/applications/editors/flpsed/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, fltk13, ghostscript}:
+{ stdenv, fetchurl, fltk13, ghostscript, xlibs }:
 
 stdenv.mkDerivation rec {
   name = "flpsed-${version}";
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
     description = "WYSIWYG PostScript annotator";
     homepage = http://flpsed.org/flpsed.html;
     license = licenses.gpl3;
-    platforms = platforms.mesaPlatforms;
+    platforms = platforms.linux;
     maintainers = with maintainers; [ fuuzetsu ];
   };
 }