about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2019-03-06 10:28:42 +0100
committerGitHub <noreply@github.com>2019-03-06 10:28:42 +0100
commit6fb8b38afcaf1ae6629dfa236838b3156414a44b (patch)
tree4f416b4126992fdd075d093a22856497a69bfe75 /pkgs/applications/graphics
parentf985fb8222b6176848ac4e4039ac98d45289a3ab (diff)
parent4cf0343b424158b8ccbfa2fd6936479911cced7b (diff)
downloadnixlib-6fb8b38afcaf1ae6629dfa236838b3156414a44b.tar
nixlib-6fb8b38afcaf1ae6629dfa236838b3156414a44b.tar.gz
nixlib-6fb8b38afcaf1ae6629dfa236838b3156414a44b.tar.bz2
nixlib-6fb8b38afcaf1ae6629dfa236838b3156414a44b.tar.lz
nixlib-6fb8b38afcaf1ae6629dfa236838b3156414a44b.tar.xz
nixlib-6fb8b38afcaf1ae6629dfa236838b3156414a44b.tar.zst
nixlib-6fb8b38afcaf1ae6629dfa236838b3156414a44b.zip
Merge pull request #56748 from andrew-d/adunham/xournalpp
xournalpp: init at 1.0.8
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/xournalpp/default.nix74
1 files changed, 74 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/xournalpp/default.nix b/pkgs/applications/graphics/xournalpp/default.nix
new file mode 100644
index 000000000000..30a8907275b0
--- /dev/null
+++ b/pkgs/applications/graphics/xournalpp/default.nix
@@ -0,0 +1,74 @@
+{ stdenv
+, lib
+, fetchFromGitHub
+, fetchpatch
+
+, cmake
+, gettext
+, wrapGAppsHook
+, pkgconfig
+
+, glib
+, gsettings-desktop-schemas
+, gtk3
+, hicolor-icon-theme
+, libsndfile
+, libxml2
+, pcre
+, poppler
+, portaudio
+, zlib
+
+# Plugins don't appear to be working in this version, so disable them by not
+# building with Lua support by default. In a future version, try switching this
+# to 'true' and seeing if the top-level Plugin menu appears.
+, withLua ? false, lua
+}:
+
+stdenv.mkDerivation rec {
+  name = "xournalpp-${version}";
+  version = "1.0.8";
+
+  src = fetchFromGitHub {
+    owner = "xournalpp";
+    repo = "xournalpp";
+    rev = version;
+    sha256 = "01q84xjp9z1krna10gjj562km6i3wdq8cg7paxax1k6bh52ryvf6";
+  };
+
+  patches = [
+    # This patch removes the unused 'xopp-recording.sh' file which breaks the
+    # cmake build; this patch isn't in a release yet, and should be removed at
+    # or after 1.0.9 is released.
+    (fetchpatch {
+      name = "remove-xopp-recording.sh.patch";
+      url = "https://github.com/xournalpp/xournalpp/commit/a17a3f2c80c607a22d0fdeb66d38358bea7e4d85.patch";
+      sha256 = "10pcpvklm6kr0lv2xrsbpg2037ni9j6dmxgjf56p466l3gz60iwy";
+    })
+  ];
+
+  nativeBuildInputs = [ cmake gettext pkgconfig wrapGAppsHook ];
+  buildInputs =
+    [ glib
+      gsettings-desktop-schemas
+      gtk3
+      hicolor-icon-theme
+      libsndfile
+      libxml2
+      pcre
+      poppler
+      portaudio
+      zlib
+    ]
+    ++ lib.optional withLua lua;
+
+  enableParallelBuilding = true;
+
+  meta = with stdenv.lib; {
+    description = "Xournal++ is a handwriting Notetaking software with PDF annotation support";
+    homepage    = https://github.com/xournalpp/xournalpp;
+    license     = licenses.gpl2;
+    maintainers = with maintainers; [ andrew-d ];
+    platforms   = platforms.linux;
+  };
+}