Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

xournalpp: 1.0.16 -> 1.0.17 #79165

Merged
merged 1 commit into from Feb 4, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 7 additions & 6 deletions pkgs/applications/graphics/xournalpp/default.nix
@@ -1,5 +1,4 @@
{ stdenv
, lib
, fetchFromGitHub

, cmake
Expand All @@ -23,13 +22,13 @@

stdenv.mkDerivation rec {
pname = "xournalpp";
version = "1.0.16";
version = "1.0.17";

src = fetchFromGitHub {
owner = "xournalpp";
repo = pname;
rev = version;
sha256 = "1bdmxxkcqpjvkckizmrz2839b4yspw4xv69bqkrrgkcyvxsr804w";
sha256 = "0xw2mcgnm4sa9hrhfgp669lfypw97drxjmz5w8i5whaprpvmkxzw";
};

nativeBuildInputs = [ cmake gettext pkgconfig wrapGAppsHook ];
Expand All @@ -45,17 +44,19 @@ stdenv.mkDerivation rec {
portaudio
zlib
]
++ lib.optional withLua lua;
++ stdenv.lib.optional withLua lua;

buildFlags = "translations";

hardeningDisable = [ "format" ];

enableParallelBuilding = true;

meta = with stdenv.lib; {
description = "Xournal++ is a handwriting Notetaking software with PDF annotation support";
homepage = https://github.com/xournalpp/xournalpp;
homepage = "https://github.com/xournalpp/xournalpp";
license = licenses.gpl2;
maintainers = with maintainers; [ andrew-d ];
maintainers = with maintainers; [ andrew-d sikmir ];
platforms = platforms.linux;
};
}