wio: init at unstable-2020-11-02
This commit is contained in:
parent
1996ff7d42
commit
f90045d24c
|
@ -0,0 +1,57 @@
|
||||||
|
{ stdenv, fetchgit
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkg-config
|
||||||
|
, alacritty
|
||||||
|
, cage
|
||||||
|
, cairo
|
||||||
|
, libxkbcommon
|
||||||
|
, udev
|
||||||
|
, wayland
|
||||||
|
, wayland-protocols
|
||||||
|
, wlroots
|
||||||
|
, xwayland
|
||||||
|
, makeWrapper
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "wio";
|
||||||
|
version = "unstable-2020-11-02";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://git.sr.ht/~sircmpwn/wio";
|
||||||
|
rev = "31b742e473b15a2087be740d1de28bc2afd47a4d";
|
||||||
|
sha256 = "1vpvlahv6dmr7vfb11p5cc5ds2y2vfvcb877nkqx18yin6pg357l";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ meson ninja pkg-config makeWrapper ];
|
||||||
|
buildInputs = [
|
||||||
|
cairo
|
||||||
|
libxkbcommon
|
||||||
|
udev
|
||||||
|
wayland
|
||||||
|
wayland-protocols
|
||||||
|
wlroots
|
||||||
|
xwayland
|
||||||
|
];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
wrapProgram $out/bin/wio \
|
||||||
|
--prefix PATH ":" "${stdenv.lib.makeBinPath [ alacritty cage ]}"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "That Plan 9 feel, for Wayland";
|
||||||
|
longDescription = ''
|
||||||
|
Wio is a Wayland compositor for Linux and FreeBSD which has a similar look
|
||||||
|
and feel to plan9's rio.
|
||||||
|
'';
|
||||||
|
homepage = "https://wio-project.org/";
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = with platforms; linux;
|
||||||
|
maintainers = with maintainers; [ AndersonTorres ];
|
||||||
|
};
|
||||||
|
|
||||||
|
passthru.providedSessions = [ "wio" ];
|
||||||
|
}
|
||||||
|
# TODO: factor Linux-specific options
|
|
@ -24966,6 +24966,8 @@ in
|
||||||
|
|
||||||
weston = callPackage ../applications/window-managers/weston { pipewire = pipewire_0_2; };
|
weston = callPackage ../applications/window-managers/weston { pipewire = pipewire_0_2; };
|
||||||
|
|
||||||
|
wio = callPackage ../applications/window-managers/wio { };
|
||||||
|
|
||||||
whitebox-tools = callPackage ../applications/gis/whitebox-tools {
|
whitebox-tools = callPackage ../applications/gis/whitebox-tools {
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue