summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2020-05-02 17:39:19 +0000
committerAlyssa Ross <hi@alyssa.is>2020-12-19 01:41:29 +0000
commit37a5f703616480ab9cebf07cc362bb0caec5ed4a (patch)
treeab33633fb7c38513250ea35e421f642161c8bef9 /pkgs/applications/window-managers
parent1a0155b5b992c19ca85f961feaa6771ad8c79bd9 (diff)
wf-shell: init at 0.6.1
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/wayfire/wf-shell.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/applications/window-managers/wayfire/wf-shell.nix b/pkgs/applications/window-managers/wayfire/wf-shell.nix
new file mode 100644
index 000000000000..6e5f189275b6
--- /dev/null
+++ b/pkgs/applications/window-managers/wayfire/wf-shell.nix
@@ -0,0 +1,30 @@
+{ stdenv, lib, fetchurl, meson, ninja, pkg-config, wayland, git
+, alsaLib, gnome3, gtk-layer-shell, pulseaudio, wayfire, wf-config
+}:
+
+stdenv.mkDerivation rec {
+ pname = "wf-shell";
+ version = "0.6.1";
+
+ # > Note to packagers: do not use the autogenerated "Source code"
+ # > archives from GitHub, but the wf-shell-0.4.0.tar.xz file.
+ src = fetchurl {
+ url = "https://github.com/WayfireWM/wf-shell/releases/download/v${version}/wf-shell-${version}.tar.xz";
+ sha256 = "0jl8gj185k2ff754lcj5b5nldhkvrhmlaj8lsik4kx78vlb5m3ns";
+ };
+
+ nativeBuildInputs = [ meson ninja pkg-config wayland ];
+ buildInputs = [
+ alsaLib gnome3.gtkmm gtk-layer-shell pulseaudio wayfire wf-config
+ ];
+
+ mesonFlags = [ "--sysconfdir" "/etc" ];
+
+ meta = with lib; {
+ homepage = "https://github.com/WayfireWM/wf-shell";
+ description = "GTK3-based panel for Wayfire";
+ license = licenses.mit;
+ maintainers = with maintainers; [ qyliss wucke13 ];
+ platforms = platforms.unix;
+ };
+}