lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

xournalpp: 1.2.2 → 1.2.3

authored by

Nikolay Korotkiy and committed by
Bjørn Forsman
ec306882 3f066570

+11 -5
+11 -5
pkgs/applications/graphics/xournalpp/default.nix
··· 7 7 , pkg-config 8 8 9 9 , alsa-lib 10 + , binutils 10 11 , glib 11 12 , gsettings-desktop-schemas 12 13 , gtk3 ··· 25 26 26 27 stdenv.mkDerivation rec { 27 28 pname = "xournalpp"; 28 - version = "1.2.2"; 29 + version = "1.2.3"; 29 30 30 31 src = fetchFromGitHub { 31 32 owner = "xournalpp"; 32 - repo = pname; 33 + repo = "xournalpp"; 33 34 rev = "v${version}"; 34 - sha256 = "sha256-6ND0Y+TzdN2rRI10cusgSK1sYMC55Wn5qFCHP4hsdes="; 35 + sha256 = "sha256-8UAAX/kixqiY9zEYs5eva0G2K2vlfnYd1yyVHMSfSeY="; 35 36 }; 36 37 38 + postPatch = '' 39 + substituteInPlace src/util/Stacktrace.cpp \ 40 + --replace-fail "addr2line" "${binutils}/bin/addr2line" 41 + ''; 42 + 37 43 nativeBuildInputs = [ cmake gettext pkg-config wrapGAppsHook ]; 44 + 38 45 buildInputs = 39 46 lib.optionals stdenv.isLinux [ 40 47 alsa-lib ··· 56 63 57 64 buildFlags = [ "translations" ]; 58 65 59 - hardeningDisable = [ "format" ]; 60 - 61 66 meta = with lib; { 62 67 description = "Xournal++ is a handwriting Notetaking software with PDF annotation support"; 63 68 homepage = "https://xournalpp.github.io/"; ··· 65 70 license = licenses.gpl2Plus; 66 71 maintainers = with maintainers; [ andrew-d sikmir ]; 67 72 platforms = platforms.unix; 73 + mainProgram = "xournalpp"; 68 74 }; 69 75 }