tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
wcm: init at 0.6.0
Alyssa Ross
5 years ago
e2243140
37a5f703
+30
2 changed files
expand all
collapse all
unified
split
pkgs
applications
window-managers
wayfire
wcm.nix
top-level
all-packages.nix
+29
pkgs/applications/window-managers/wayfire/wcm.nix
···
1
1
+
{ stdenv, lib, fetchFromGitHub, meson, ninja, pkg-config, wayland, wrapGAppsHook
2
2
+
, gnome3, libevdev, libxml2, wayfire, wayland-protocols, wf-config, wf-shell
3
3
+
}:
4
4
+
5
5
+
stdenv.mkDerivation rec {
6
6
+
pname = "wcm";
7
7
+
version = "0.6.0";
8
8
+
9
9
+
src = fetchFromGitHub {
10
10
+
owner = "WayfireWM";
11
11
+
repo = "wcm";
12
12
+
rev = "v${version}";
13
13
+
sha256 = "1b22gymqfn0c49nf39676q5bj25rxab874iayiq31cmn14r30dyg";
14
14
+
};
15
15
+
16
16
+
nativeBuildInputs = [ meson ninja pkg-config wayland wrapGAppsHook ];
17
17
+
buildInputs = [
18
18
+
gnome3.gtk libevdev libxml2 wayfire wayland
19
19
+
wayland-protocols wf-config wf-shell
20
20
+
];
21
21
+
22
22
+
meta = with lib; {
23
23
+
homepage = "https://github.com/WayfireWM/wcm";
24
24
+
description = "Wayfire Config Manager";
25
25
+
license = licenses.mit;
26
26
+
maintainers = with maintainers; [ qyliss wucke13 ];
27
27
+
platforms = platforms.unix;
28
28
+
};
29
29
+
}
+1
pkgs/top-level/all-packages.nix
···
24756
24756
"https://way-cooler.org/blog/2020/01/09/way-cooler-post-mortem.html");
24757
24757
24758
24758
wayfire = callPackage ../applications/window-managers/wayfire { };
24759
24759
+
wcm = callPackage ../applications/window-managers/wayfire/wcm.nix { };
24759
24760
wf-config = callPackage ../applications/window-managers/wayfire/wf-config.nix { };
24760
24761
wf-shell = callPackage ../applications/window-managers/wayfire/wf-shell.nix { };
24761
24762