Merge pull request #67652 from primeos/cage

cage: init at 0.1.1
This commit is contained in:
Michael Weiss 2019-08-30 18:01:36 +02:00 committed by GitHub
commit 69402e6607
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,42 @@
{ stdenv, fetchFromGitHub
, meson, ninja, pkgconfig, makeWrapper
, wlroots, wayland, wayland-protocols, pixman, libxkbcommon
, systemd, mesa, libX11
, xwayland ? null
}:
stdenv.mkDerivation rec {
pname = "cage";
version = "0.1.1";
src = fetchFromGitHub {
owner = "Hjdskes";
repo = pname;
rev = "v${version}";
sha256 = "1vp4mfkflrjmlgyx5mkbzdi3iq58m76q7l9dfrsk85xn0642d6q1";
};
nativeBuildInputs = [ meson ninja pkgconfig makeWrapper ];
buildInputs = [
wlroots wayland wayland-protocols pixman libxkbcommon
# TODO: Not specified but required:
systemd mesa libX11
];
enableParallelBuilding = true;
mesonFlags = [ "-Dxwayland=${stdenv.lib.boolToString (xwayland != null)}" ];
postFixup = stdenv.lib.optionalString (xwayland != null) ''
wrapProgram $out/bin/cage --prefix PATH : "${xwayland}/bin"
'';
meta = with stdenv.lib; {
description = "A Wayland kiosk";
homepage = https://www.hjdskes.nl/projects/cage/;
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ primeos ];
};
}

View file

@ -17522,6 +17522,8 @@ in
bviplus = callPackage ../applications/editors/bviplus { };
cage = callPackage ../applications/window-managers/cage { };
calf = callPackage ../applications/audio/calf {
inherit (gnome2) libglade;
stdenv = gcc5Stdenv;