2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2019-03-03 02:12:12 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
|
|
|
|
, cmake
|
|
|
|
, gettext
|
|
|
|
, wrapGAppsHook
|
2020-12-17 19:12:45 +00:00
|
|
|
, pkg-config
|
2019-03-03 02:12:12 +00:00
|
|
|
|
|
|
|
, glib
|
|
|
|
, gsettings-desktop-schemas
|
|
|
|
, gtk3
|
2021-07-24 16:00:41 +01:00
|
|
|
, librsvg
|
2019-03-03 02:12:12 +00:00
|
|
|
, 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";
|
2021-07-24 16:00:41 +01:00
|
|
|
version = "1.1.0";
|
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;
|
2021-07-24 16:00:41 +01:00
|
|
|
sha256 = "sha256-FIIpWgWvq1uo/lIQXpOkUTZ6YJPtOtxKF8VjXSgqrlE=";
|
2019-03-03 02:12:12 +00:00
|
|
|
};
|
|
|
|
|
2020-12-17 19:12:45 +00:00
|
|
|
nativeBuildInputs = [ cmake gettext pkg-config wrapGAppsHook ];
|
2019-03-03 02:12:12 +00:00
|
|
|
buildInputs =
|
|
|
|
[ glib
|
|
|
|
gsettings-desktop-schemas
|
|
|
|
gtk3
|
2021-07-24 16:00:41 +01:00
|
|
|
librsvg
|
2019-03-03 02:12:12 +00:00
|
|
|
libsndfile
|
|
|
|
libxml2
|
2019-05-30 13:22:43 +01:00
|
|
|
libzip
|
2019-03-03 02:12:12 +00:00
|
|
|
pcre
|
|
|
|
poppler
|
|
|
|
portaudio
|
|
|
|
zlib
|
|
|
|
]
|
2021-01-15 13:21:58 +00:00
|
|
|
++ lib.optional withLua lua;
|
2020-02-03 17:32:54 +00:00
|
|
|
|
|
|
|
buildFlags = "translations";
|
2019-03-03 02:12:12 +00:00
|
|
|
|
2019-05-30 13:22:43 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-03-03 02:12:12 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|