mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
adwcustomizer: 2022-07-19 -> 2022-08-07
This commit is contained in:
parent
6fb793d24a
commit
79ca547625
@ -1,16 +1,34 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, wrapGAppsHook4, meson, ninja, pkg-config, glib, desktop-file-utils, gettext, blueprint-compiler, python3Packages, appstream-glib, gtk4, libadwaita, libportal, libportal-gtk4 }:
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, wrapGAppsHook4
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkg-config
|
||||||
|
, glib
|
||||||
|
, desktop-file-utils
|
||||||
|
, gettext
|
||||||
|
, blueprint-compiler
|
||||||
|
, python3Packages
|
||||||
|
, appstream-glib
|
||||||
|
, gtk4
|
||||||
|
, libadwaita
|
||||||
|
, libportal
|
||||||
|
, libportal-gtk4
|
||||||
|
, gobject-introspection
|
||||||
|
}:
|
||||||
|
|
||||||
# Not all parts of the application works with the current nixpkgs version of
|
# Not all parts of the application works with the current nixpkgs version of
|
||||||
# libadwaita.
|
# libadwaita.
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "adwcustomizer";
|
pname = "adwcustomizer";
|
||||||
version = "2022-07-19";
|
version = "2022-08-07";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ArtyIF";
|
owner = "ArtyIF";
|
||||||
repo = "AdwCustomizer";
|
repo = "AdwCustomizer";
|
||||||
rev = "5a6fa1b2ba63a5a8ac3861f28882c4e62f62b10b";
|
rev = "d20bf680672b53f8be0c046b99e704fad29e7b2d";
|
||||||
sha256 = "sha256-KwvAlcRfilu/rC6e145xMC/6I7OXsZYWlYd0GNZoYDs";
|
sha256 = "sha256-Js6YXPcMOaEOnfAlQ01WKDdOBCcnLOHnznEN8WxIu0s=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
@ -25,21 +43,23 @@ python3Packages.buildPythonApplication rec {
|
|||||||
meson
|
meson
|
||||||
ninja
|
ninja
|
||||||
pkg-config
|
pkg-config
|
||||||
glib
|
|
||||||
desktop-file-utils
|
desktop-file-utils
|
||||||
gettext
|
gettext
|
||||||
appstream-glib
|
|
||||||
blueprint-compiler
|
blueprint-compiler
|
||||||
gtk4
|
gtk4
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
gobject-introspection
|
||||||
|
appstream-glib
|
||||||
|
glib
|
||||||
libadwaita
|
libadwaita
|
||||||
libportal
|
libportal
|
||||||
libportal-gtk4
|
libportal-gtk4
|
||||||
];
|
] ++ (with python3Packages; [
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [
|
|
||||||
pygobject3
|
pygobject3
|
||||||
anyascii
|
anyascii
|
||||||
];
|
]);
|
||||||
|
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
||||||
|
Loading…
Reference in New Issue
Block a user