2019-03-03 02:12:12 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
|
|
|
, cmake
|
|
|
|
, gettext
|
|
|
|
, wrapGAppsHook
|
|
|
|
, pkgconfig
|
|
|
|
|
|
|
|
, glib
|
|
|
|
, gsettings-desktop-schemas
|
|
|
|
, gtk3
|
|
|
|
, libsndfile
|
|
|
|
, libxml2
|
2019-05-30 13:22:43 +01:00
|
|
|
, libzip
|
2019-03-03 02:12:12 +00:00
|
|
|
, pcre
|
|
|
|
, poppler
|
|
|
|
, portaudio
|
|
|
|
, zlib
|
2019-06-23 09:37:15 +01:00
|
|
|
# plugins
|
2019-05-30 13:22:43 +01:00
|
|
|
, withLua ? true, lua
|
2019-03-03 02:12:12 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "xournalpp";
|
2020-10-21 23:26:51 +01:00
|
|
|
version = "1.0.19";
|
2019-03-03 02:12:12 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "xournalpp";
|
2019-10-16 08:30:31 +01:00
|
|
|
repo = pname;
|
2019-03-03 02:12:12 +00:00
|
|
|
rev = version;
|
2020-10-21 23:26:51 +01:00
|
|
|
sha256 = "05nx4cmrka6hwdn7r91yy4h46qpa9k7iy9dkgaq3hrkh9z3fxlkq";
|
2019-03-03 02:12:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake gettext pkgconfig wrapGAppsHook ];
|
|
|
|
buildInputs =
|
|
|
|
[ glib
|
|
|
|
gsettings-desktop-schemas
|
|
|
|
gtk3
|
|
|
|
libsndfile
|
|
|
|
libxml2
|
2019-05-30 13:22:43 +01:00
|
|
|
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
|
|
|
|
2019-05-30 13:22:43 +01: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-10-21 23:26:51 +01:00
|
|
|
homepage = "https://xournalpp.github.io/";
|
|
|
|
license = licenses.gpl2Plus;
|
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;
|
|
|
|
};
|
|
|
|
}
|