labwc: 0.3.0 -> 0.4.0

labwc: 0.3.0 -> 0.4.0

Update pkgs/applications/window-managers/labwc/default.nix

Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>

Apply PR feedback - imports reordered, description updated, wlroots version incremented
This commit is contained in:
Erika Kuykendall 2022-01-27 17:03:35 -05:00
parent 2b14787033
commit eaf9d8f598
2 changed files with 14 additions and 13 deletions

View file

@ -1,33 +1,33 @@
{ lib { lib
, stdenv , stdenv
, fetchFromGitHub , fetchFromGitHub
, pkg-config
, meson
, ninja
, cairo , cairo
, glib , glib
, libdrm
, libinput , libinput
, libxcb
, libxkbcommon
, libxml2 , libxml2
, meson
, ninja
, pango , pango
, pkg-config
, scdoc
, wayland , wayland
, wayland-protocols , wayland-protocols
, wlroots , wlroots
, libxcb
, libxkbcommon
, xwayland , xwayland
, libdrm
, scdoc
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "labwc"; pname = "labwc";
version = "0.3.0"; version = "0.4.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "johanmalm"; owner = "labwc";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-v8LGiQG/n1IXeVMPWyiP9MgZzZLW78JftvxnRVTswaM="; hash = "sha256-O9jVDR7UROt5u8inUsZjbzB3dQTosiLYqXkeOyGrbaM=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -36,6 +36,7 @@ stdenv.mkDerivation rec {
pkg-config pkg-config
scdoc scdoc
]; ];
buildInputs = [ buildInputs = [
cairo cairo
glib glib
@ -54,8 +55,8 @@ stdenv.mkDerivation rec {
mesonFlags = [ "-Dxwayland=enabled" ]; mesonFlags = [ "-Dxwayland=enabled" ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/johanmalm/labwc"; homepage = "https://github.com/labwc/labwc";
description = "Openbox alternative for Wayland"; description = "A Wayland stacking compositor, similar to Openbox";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = with maintainers; [ AndersonTorres ]; maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.unix; platforms = platforms.unix;

View file

@ -26854,7 +26854,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_14; wlroots = wlroots_0_15;
}; };
larswm = callPackage ../applications/window-managers/larswm { }; larswm = callPackage ../applications/window-managers/larswm { };