wcm: init at 0.6.0

This commit is contained in:
Alyssa Ross 2020-05-03 13:25:07 +00:00
parent 37a5f70361
commit e2243140f9
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, lib, fetchFromGitHub, meson, ninja, pkg-config, wayland, wrapGAppsHook
, gnome3, libevdev, libxml2, wayfire, wayland-protocols, wf-config, wf-shell
}:
stdenv.mkDerivation rec {
pname = "wcm";
version = "0.6.0";
src = fetchFromGitHub {
owner = "WayfireWM";
repo = "wcm";
rev = "v${version}";
sha256 = "1b22gymqfn0c49nf39676q5bj25rxab874iayiq31cmn14r30dyg";
};
nativeBuildInputs = [ meson ninja pkg-config wayland wrapGAppsHook ];
buildInputs = [
gnome3.gtk libevdev libxml2 wayfire wayland
wayland-protocols wf-config wf-shell
];
meta = with lib; {
homepage = "https://github.com/WayfireWM/wcm";
description = "Wayfire Config Manager";
license = licenses.mit;
maintainers = with maintainers; [ qyliss wucke13 ];
platforms = platforms.unix;
};
}

View file

@ -24756,6 +24756,7 @@ in
"https://way-cooler.org/blog/2020/01/09/way-cooler-post-mortem.html");
wayfire = callPackage ../applications/window-managers/wayfire { };
wcm = callPackage ../applications/window-managers/wayfire/wcm.nix { };
wf-config = callPackage ../applications/window-managers/wayfire/wf-config.nix { };
wf-shell = callPackage ../applications/window-managers/wayfire/wf-shell.nix { };