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
89 lines
1.6 KiB
Nix
89 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
meson,
|
|
ninja,
|
|
appstream,
|
|
gtksourceview5,
|
|
desktop-file-utils,
|
|
gobject-introspection,
|
|
wrapGAppsHook4,
|
|
blueprint-compiler,
|
|
pkg-config,
|
|
libadwaita,
|
|
libportal-gtk4,
|
|
gnome,
|
|
librsvg,
|
|
webp-pixbuf-loader,
|
|
libsoup_3,
|
|
bash,
|
|
nix-update-script,
|
|
}:
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "gradia";
|
|
version = "1.9.0";
|
|
pyproject = false;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AlexanderVanhee";
|
|
repo = "Gradia";
|
|
tag = "v${version}";
|
|
hash = "sha256-iDldzS7LLJ/+CfKBpD50LW/YrZ2xb8aqZI9Bs1AOcCM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
appstream
|
|
desktop-file-utils
|
|
gobject-introspection
|
|
wrapGAppsHook4
|
|
blueprint-compiler
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
gtksourceview5
|
|
libadwaita
|
|
libportal-gtk4
|
|
libsoup_3
|
|
bash
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
pygobject3
|
|
pillow
|
|
];
|
|
|
|
postInstall = ''
|
|
export GDK_PIXBUF_MODULE_FILE="${
|
|
gnome._gdkPixbufCacheBuilder_DO_NOT_USE {
|
|
extraLoaders = [
|
|
librsvg
|
|
webp-pixbuf-loader
|
|
];
|
|
}
|
|
}"
|
|
'';
|
|
|
|
dontWrapGApps = true;
|
|
|
|
makeWrapperArgs = [ "\${gappsWrapperArgs[@]}" ];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Make your screenshots ready for the world";
|
|
homepage = "https://github.com/AlexanderVanhee/Gradia";
|
|
changelog = "https://github.com/AlexanderVanhee/Gradia/releases/tag/${src.tag}";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [
|
|
Cameo007
|
|
quadradical
|
|
];
|
|
mainProgram = "gradia";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|