pigment: init at 0.5.0

This commit is contained in:
awwpotato 2025-06-21 18:46:12 -07:00
parent dbd3ec5937
commit 930403b7de
No known key found for this signature in database

View File

@ -0,0 +1,69 @@
{
lib,
python3Packages,
fetchFromGitHub,
ninja,
meson,
pkg-config,
wrapGAppsHook4,
glib,
desktop-file-utils,
appstream-glib,
gobject-introspection,
gtk4,
libadwaita,
nix-update-script,
}:
let
version = "0.5.0";
in
python3Packages.buildPythonApplication {
pname = "pigment";
inherit version;
pyproject = false;
src = fetchFromGitHub {
owner = "Jeffser";
repo = "Pigment";
tag = version;
hash = "sha256-VwqCv2IPxPKT/6PDk8sosAIZlyu8zl5HDQEaIRWlJKg=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
wrapGAppsHook4
glib
desktop-file-utils
appstream-glib
gobject-introspection
];
pythonPath = with python3Packages; [
pygobject3
colorthief
pydbus
];
buildInputs = [
gtk4
libadwaita
];
dontWrapGApps = true;
makeWrapperArgs = [ "\${gappsWrapperArgs[@]}" ];
passthru.updateScript = nix-update-script { };
meta = {
description = "Extract color palettes from your images";
homepage = "https://jeffser.com/pigment/";
downloadPage = "https://github.com/Jeffser/Pigment";
changelog = "https://github.com/Jeffser/Pigment/releases/tag/v${version}";
license = lib.licenses.gpl3Plus;
mainProgram = "pigment";
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.awwpotato ];
};
}