swaysettings: 0.4.0 -> 0.5.0 (#386374)

This commit is contained in:
Pol Dellaiera
2025-03-28 22:19:12 +01:00
committed by GitHub
+20 -8
View File
@@ -24,17 +24,23 @@
stdenv,
vala,
wrapGAppsHook3,
blueprint-compiler,
gtk4,
libadwaita,
udisks,
libgtop,
gtk4-layer-shell,
}:
stdenv.mkDerivation rec {
pname = "swaysettings";
version = "0.4.0";
version = "0.5.0";
src = fetchFromGitHub {
owner = "ErikReider";
repo = "SwaySettings";
rev = "v${version}";
hash = "sha256-dn3n5DOAsw0FeXBkh19A2qB/5O+RyA2/Fj5PVtMOyL0=";
tag = "v${version}";
hash = "sha256-XP0Q3Q40cvAl3MEqShY+VMWjlCtqs9e91nkxocVNQQQ=";
};
nativeBuildInputs = [
@@ -48,6 +54,10 @@ stdenv.mkDerivation rec {
vala
wrapGAppsHook3
gobject-introspection
blueprint-compiler
udisks
libgtop
gtk4-layer-shell
];
buildInputs = [
@@ -62,22 +72,24 @@ stdenv.mkDerivation rec {
libhandy
libpulseaudio
libxml2
pantheon.granite
pantheon.granite7
gtk4
libadwaita
];
postPatch = ''
patchShebangs build-aux/meson/postinstall.py
'';
meta = with lib; {
meta = {
description = "GUI for configuring your sway desktop";
longDescription = ''
Sway settings enables easy configuration of a sway desktop environment
such as selection of application or icon themes.
'';
homepage = "https://github.com/ErikReider/SwaySettings";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = [ maintainers.aacebedo ];
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.aacebedo ];
};
}