mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
Merge pull request #175197 from aacebedo/master
swaysettings: init at 0.3.0
This commit is contained in:
commit
904cf8a5ee
@ -139,6 +139,12 @@
|
||||
githubId = 241628;
|
||||
name = "Adam Russell";
|
||||
};
|
||||
aacebedo = {
|
||||
email = "alexandre@acebedo.fr";
|
||||
github = "aacebedo";
|
||||
githubId = 1217680;
|
||||
name = "Alexandre Acebedo";
|
||||
};
|
||||
aadibajpai = {
|
||||
email = "hello@aadibajpai.com";
|
||||
github = "aadibajpai";
|
||||
|
78
pkgs/applications/misc/swaysettings/default.nix
Normal file
78
pkgs/applications/misc/swaysettings/default.nix
Normal file
@ -0,0 +1,78 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, accountsservice
|
||||
, appstream-glib
|
||||
, dbus
|
||||
, desktop-file-utils
|
||||
, gettext
|
||||
, glib
|
||||
, gobject-introspection
|
||||
, gsettings-desktop-schemas
|
||||
, gtk3
|
||||
, json-glib
|
||||
, libgee
|
||||
, libhandy
|
||||
, libxml2
|
||||
, meson
|
||||
, ninja
|
||||
, pantheon
|
||||
, pkg-config
|
||||
, python3
|
||||
, stdenv
|
||||
, vala
|
||||
, wrapGAppsHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "swaysettings";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ErikReider";
|
||||
repo = "SwaySettings";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-2bbB+37t6chbdnOSpIolAsy7aD9i1UizWqkcF8Frfsk=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
appstream-glib
|
||||
desktop-file-utils
|
||||
gettext
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
python3
|
||||
vala
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
accountsservice
|
||||
dbus
|
||||
glib
|
||||
gobject-introspection
|
||||
gsettings-desktop-schemas
|
||||
gtk3
|
||||
json-glib
|
||||
libgee
|
||||
libhandy
|
||||
libxml2
|
||||
pantheon.granite
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs /build/source/build-aux/meson/postinstall.py
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A 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 ];
|
||||
};
|
||||
}
|
@ -35854,4 +35854,6 @@ with pkgs;
|
||||
mictray = callPackage ../tools/audio/mictray { };
|
||||
|
||||
swift-corelibs-libdispatch = callPackage ../development/libraries/swift-corelibs-libdispatch { };
|
||||
|
||||
swaysettings = callPackage ../applications/misc/swaysettings { };
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user