nixpkgs/pkgs/applications/graphics/xournalpp/default.nix

63 lines
1.1 KiB
Nix
Raw Normal View History

2019-03-03 02:12:12 +00:00
{ stdenv
, fetchFromGitHub
, cmake
, gettext
, wrapGAppsHook
, pkgconfig
, glib
, gsettings-desktop-schemas
, gtk3
, libsndfile
, libxml2
, libzip
2019-03-03 02:12:12 +00:00
, pcre
, poppler
, portaudio
, zlib
# plugins
, withLua ? true, lua
2019-03-03 02:12:12 +00:00
}:
stdenv.mkDerivation rec {
pname = "xournalpp";
2020-04-15 20:09:56 +00:00
version = "1.0.18";
2019-03-03 02:12:12 +00:00
src = fetchFromGitHub {
owner = "xournalpp";
2019-10-16 07:30:31 +00:00
repo = pname;
2019-03-03 02:12:12 +00:00
rev = version;
2020-04-15 20:09:56 +00:00
sha256 = "0a9ygbmd4dwgck3k8wsrm2grynqa0adb12wwspzmzvpisbadffjy";
2019-03-03 02:12:12 +00:00
};
nativeBuildInputs = [ cmake gettext pkgconfig wrapGAppsHook ];
buildInputs =
[ glib
gsettings-desktop-schemas
gtk3
libsndfile
libxml2
libzip
2019-03-03 02:12:12 +00:00
pcre
poppler
portaudio
zlib
]
2020-02-03 17:32:54 +00:00
++ stdenv.lib.optional withLua lua;
buildFlags = "translations";
2019-03-03 02:12:12 +00:00
hardeningDisable = [ "format" ];
2019-03-03 02:12:12 +00:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Xournal++ is a handwriting Notetaking software with PDF annotation support";
2020-02-03 17:32:54 +00:00
homepage = "https://github.com/xournalpp/xournalpp";
2019-03-03 02:12:12 +00:00
license = licenses.gpl2;
2020-02-03 17:32:54 +00:00
maintainers = with maintainers; [ andrew-d sikmir ];
2019-03-03 02:12:12 +00:00
platforms = platforms.linux;
};
}