labwc: 0.5.3 -> 0.6.0
This commit is contained in:
parent
95109997bb
commit
c92ffdd222
2 changed files with 16 additions and 11 deletions
|
@ -15,19 +15,23 @@
|
||||||
, scdoc
|
, scdoc
|
||||||
, wayland
|
, wayland
|
||||||
, wayland-protocols
|
, wayland-protocols
|
||||||
, wlroots
|
, wlroots_0_16
|
||||||
|
, xcbutilwm
|
||||||
, xwayland
|
, xwayland
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
let
|
||||||
|
wlroots = wlroots_0_16;
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "labwc";
|
pname = "labwc";
|
||||||
version = "0.5.3";
|
version = "0.6.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "labwc";
|
owner = "labwc";
|
||||||
repo = pname;
|
repo = "labwc";
|
||||||
rev = version;
|
rev = finalAttrs.version;
|
||||||
hash = "sha256-YD2bGxa7uss6KRvOGM0kn8dM+277ubaYeOB7ugRZCcY=";
|
hash = "sha256-P1hKYTW++dpV3kdmI5nBGun080gVTrKzi2WOJKR84j4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -49,10 +53,13 @@ stdenv.mkDerivation rec {
|
||||||
wayland
|
wayland
|
||||||
wayland-protocols
|
wayland-protocols
|
||||||
wlroots
|
wlroots
|
||||||
|
xcbutilwm
|
||||||
xwayland
|
xwayland
|
||||||
];
|
];
|
||||||
|
|
||||||
mesonFlags = [ "-Dxwayland=enabled" ];
|
mesonFlags = [
|
||||||
|
(lib.mesonEnable "xwayland" true)
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/labwc/labwc";
|
homepage = "https://github.com/labwc/labwc";
|
||||||
|
@ -61,4 +68,4 @@ stdenv.mkDerivation rec {
|
||||||
maintainers = with maintainers; [ AndersonTorres ];
|
maintainers = with maintainers; [ AndersonTorres ];
|
||||||
inherit (wayland.meta) platforms;
|
inherit (wayland.meta) platforms;
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
|
@ -30161,9 +30161,7 @@ with pkgs;
|
||||||
|
|
||||||
lame = callPackage ../development/libraries/lame { };
|
lame = callPackage ../development/libraries/lame { };
|
||||||
|
|
||||||
labwc = callPackage ../applications/window-managers/labwc {
|
labwc = callPackage ../applications/window-managers/labwc { };
|
||||||
wlroots = wlroots_0_15;
|
|
||||||
};
|
|
||||||
|
|
||||||
larswm = callPackage ../applications/window-managers/larswm { };
|
larswm = callPackage ../applications/window-managers/larswm { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue