mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +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
|
||||
# libadwaita.
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "adwcustomizer";
|
||||
version = "2022-07-19";
|
||||
version = "2022-08-07";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ArtyIF";
|
||||
repo = "AdwCustomizer";
|
||||
rev = "5a6fa1b2ba63a5a8ac3861f28882c4e62f62b10b";
|
||||
sha256 = "sha256-KwvAlcRfilu/rC6e145xMC/6I7OXsZYWlYd0GNZoYDs";
|
||||
rev = "d20bf680672b53f8be0c046b99e704fad29e7b2d";
|
||||
sha256 = "sha256-Js6YXPcMOaEOnfAlQ01WKDdOBCcnLOHnznEN8WxIu0s=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
@ -25,21 +43,23 @@ python3Packages.buildPythonApplication rec {
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
glib
|
||||
desktop-file-utils
|
||||
gettext
|
||||
appstream-glib
|
||||
blueprint-compiler
|
||||
gtk4
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
gobject-introspection
|
||||
appstream-glib
|
||||
glib
|
||||
libadwaita
|
||||
libportal
|
||||
libportal-gtk4
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
] ++ (with python3Packages; [
|
||||
pygobject3
|
||||
anyascii
|
||||
];
|
||||
]);
|
||||
|
||||
preFixup = ''
|
||||
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
||||
|
Loading…
Reference in New Issue
Block a user