Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
92 lines
1.6 KiB
Nix
92 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
|
|
cmake,
|
|
gettext,
|
|
wrapGAppsHook3,
|
|
pkg-config,
|
|
|
|
adwaita-icon-theme,
|
|
alsa-lib,
|
|
binutils,
|
|
glib,
|
|
gsettings-desktop-schemas,
|
|
gtk3,
|
|
gtksourceview4,
|
|
librsvg,
|
|
libsndfile,
|
|
libxml2,
|
|
libzip,
|
|
pcre,
|
|
poppler,
|
|
portaudio,
|
|
zlib,
|
|
# plugins
|
|
withLua ? true,
|
|
lua,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xournalpp";
|
|
version = "1.2.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xournalpp";
|
|
repo = "xournalpp";
|
|
rev = "v${version}";
|
|
hash = "sha256-yQN90R2gxUunUimZqT2kncnCNtDaLD36ctf1bU2vmIw=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/util/Stacktrace.cpp \
|
|
--replace-fail "addr2line" "${binutils}/bin/addr2line"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
gettext
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs =
|
|
lib.optionals stdenv.hostPlatform.isLinux [
|
|
alsa-lib
|
|
]
|
|
++ [
|
|
glib
|
|
gsettings-desktop-schemas
|
|
gtk3
|
|
gtksourceview4
|
|
librsvg
|
|
libsndfile
|
|
libxml2
|
|
libzip
|
|
pcre
|
|
poppler
|
|
portaudio
|
|
zlib
|
|
]
|
|
++ lib.optional withLua lua;
|
|
|
|
buildFlags = [ "translations" ];
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
--prefix XDG_DATA_DIRS : "${adwaita-icon-theme}/share"
|
|
)
|
|
'';
|
|
|
|
meta = {
|
|
description = "Xournal++ is a handwriting Notetaking software with PDF annotation support";
|
|
homepage = "https://xournalpp.github.io/";
|
|
changelog = "https://github.com/xournalpp/xournalpp/blob/v${version}/CHANGELOG.md";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [ sikmir ];
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "xournalpp";
|
|
};
|
|
}
|