Merge pull request #213530 from atorres1985-contrib/small-fixups

labwc: 0.6.0 -> 0.6.1
This commit is contained in:
Anderson Torres 2023-01-30 07:02:19 -03:00 committed by GitHub
commit 0125b49eeb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,15 +23,15 @@
let
wlroots = wlroots_0_16;
in
stdenv.mkDerivation (finalAttrs: {
stdenv.mkDerivation (self: {
pname = "labwc";
version = "0.6.0";
version = "0.6.1";
src = fetchFromGitHub {
owner = "labwc";
repo = "labwc";
rev = finalAttrs.version;
hash = "sha256-P1hKYTW++dpV3kdmI5nBGun080gVTrKzi2WOJKR84j4=";
rev = self.version;
hash = "sha256-PfvtNbSAz1vt0+ko4zRPyRRN+lhQoA2kJ2xoJy5o4So=";
};
nativeBuildInputs = [
@ -64,6 +64,7 @@ stdenv.mkDerivation (finalAttrs: {
meta = with lib; {
homepage = "https://github.com/labwc/labwc";
description = "A Wayland stacking compositor, similar to Openbox";
changelog = "https://raw.githubusercontent.com/labwc/labwc/${self.version}/NEWS.md";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ AndersonTorres ];
inherit (wayland.meta) platforms;