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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

76 lines
1.4 KiB
Nix
Raw Normal View History

{ 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
2023-07-31 01:32:09 +00:00
, alsa-lib
2024-03-02 10:51:19 +00:00
, binutils
2019-03-03 02:12:12 +00:00
, glib
, gsettings-desktop-schemas
, gtk3
2023-07-31 01:32:09 +00:00
, gtksourceview4
2021-07-24 15:00:41 +00:00
, librsvg
2019-03-03 02:12:12 +00:00
, 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";
2024-03-02 10:51:19 +00:00
version = "1.2.3";
2019-03-03 02:12:12 +00:00
src = fetchFromGitHub {
owner = "xournalpp";
2024-03-02 10:51:19 +00:00
repo = "xournalpp";
2022-02-14 17:39:13 +00:00
rev = "v${version}";
2024-03-02 10:51:19 +00:00
sha256 = "sha256-8UAAX/kixqiY9zEYs5eva0G2K2vlfnYd1yyVHMSfSeY=";
2019-03-03 02:12:12 +00:00
};
2024-03-02 10:51:19 +00:00
postPatch = ''
substituteInPlace src/util/Stacktrace.cpp \
--replace-fail "addr2line" "${binutils}/bin/addr2line"
'';
2020-12-17 19:12:45 +00:00
nativeBuildInputs = [ cmake gettext pkg-config wrapGAppsHook ];
2024-03-02 10:51:19 +00:00
2019-03-03 02:12:12 +00:00
buildInputs =
2023-10-14 21:22:45 +00:00
lib.optionals stdenv.isLinux [
2023-07-31 01:32:09 +00:00
alsa-lib
2023-10-14 21:22:45 +00:00
] ++ [
2023-07-31 01:32:09 +00:00
glib
2019-03-03 02:12:12 +00:00
gsettings-desktop-schemas
gtk3
2023-07-31 01:32:09 +00:00
gtksourceview4
2021-07-24 15:00:41 +00:00
librsvg
2019-03-03 02:12:12 +00:00
libsndfile
libxml2
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
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 22:26:51 +00:00
homepage = "https://xournalpp.github.io/";
2022-02-14 17:39:13 +00:00
changelog = "https://github.com/xournalpp/xournalpp/blob/v${version}/CHANGELOG.md";
2020-10-21 22:26:51 +00:00
license = licenses.gpl2Plus;
2020-02-03 17:32:54 +00:00
maintainers = with maintainers; [ andrew-d sikmir ];
2023-10-14 21:22:45 +00:00
platforms = platforms.unix;
2024-03-02 10:51:19 +00:00
mainProgram = "xournalpp";
2019-03-03 02:12:12 +00:00
};
}