mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
78 lines
1.4 KiB
Nix
78 lines
1.4 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, wrapGAppsHook4
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, glib
|
|
, desktop-file-utils
|
|
, gettext
|
|
, librsvg
|
|
, blueprint-compiler
|
|
, python3Packages
|
|
, appstream-glib
|
|
, libadwaita
|
|
, libportal
|
|
, libportal-gtk4
|
|
, gobject-introspection
|
|
, python-material-color-utilities
|
|
}:
|
|
|
|
# Not all parts of the application works with the current nixpkgs version of
|
|
# libadwaita.
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "gradience";
|
|
version = "0.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GradienceTeam";
|
|
repo = "Gradience";
|
|
rev = version;
|
|
sha256 = "sha256-Y2qgKrx2fbb1q1PTj/rQDmfkrrPuRMshUl1XlI2ciGc=";
|
|
};
|
|
|
|
format = "other";
|
|
dontWrapGApps = true;
|
|
|
|
nativeBuildInputs = [
|
|
appstream-glib
|
|
blueprint-compiler
|
|
desktop-file-utils
|
|
gettext
|
|
glib
|
|
gobject-introspection
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
libadwaita
|
|
libportal
|
|
libportal-gtk4
|
|
librsvg
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
pygobject3
|
|
anyascii
|
|
urllib3
|
|
svglib
|
|
requests
|
|
] ++ [
|
|
python-material-color-utilities
|
|
];
|
|
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/GradienceTeam/Gradience";
|
|
description = "Customize libadwaita and GTK3 apps (with adw-gtk3)";
|
|
license = licenses.mit;
|
|
};
|
|
}
|