about summary refs log tree commit diff
path: root/pkgs/by-name/la/labwc
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2024-03-01 19:42:44 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2024-03-01 19:42:44 -0300
commitdddab82fc6a5b81ca3f312b23dd12c9a39fc6a33 (patch)
tree4c7760a7ceadec362cf3dedbc1daeb130fd31fb5 /pkgs/by-name/la/labwc
parent3d01643d7b190e7c90a09222922f157b8f220048 (diff)
downloadnixlib-dddab82fc6a5b81ca3f312b23dd12c9a39fc6a33.tar
nixlib-dddab82fc6a5b81ca3f312b23dd12c9a39fc6a33.tar.gz
nixlib-dddab82fc6a5b81ca3f312b23dd12c9a39fc6a33.tar.bz2
nixlib-dddab82fc6a5b81ca3f312b23dd12c9a39fc6a33.tar.lz
nixlib-dddab82fc6a5b81ca3f312b23dd12c9a39fc6a33.tar.xz
nixlib-dddab82fc6a5b81ca3f312b23dd12c9a39fc6a33.tar.zst
nixlib-dddab82fc6a5b81ca3f312b23dd12c9a39fc6a33.zip
labwc: 0.7.0 -> 0.7.1
Diffstat (limited to 'pkgs/by-name/la/labwc')
-rw-r--r--pkgs/by-name/la/labwc/package.nix17
1 files changed, 9 insertions, 8 deletions
diff --git a/pkgs/by-name/la/labwc/package.nix b/pkgs/by-name/la/labwc/package.nix
index e28176a7d1cd..36aa398e8767 100644
--- a/pkgs/by-name/la/labwc/package.nix
+++ b/pkgs/by-name/la/labwc/package.nix
@@ -1,7 +1,6 @@
 { lib
-, stdenv
-, fetchFromGitHub
 , cairo
+, fetchFromGitHub
 , gettext
 , glib
 , libdrm
@@ -16,6 +15,7 @@
 , pango
 , pkg-config
 , scdoc
+, stdenv
 , wayland
 , wayland-protocols
 , wayland-scanner
@@ -26,15 +26,17 @@
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "labwc";
-  version = "0.7.0";
+  version = "0.7.1";
 
   src = fetchFromGitHub {
     owner = "labwc";
     repo = "labwc";
     rev = finalAttrs.version;
-    hash = "sha256-/z2Wo9zhuEVIpk8jHYwg2JbBqkX7tfDP2KTZ9yzj454=";
+    hash = "sha256-6l+pYEMFQT8P0j40IcujSzlKgXzR5GIyuxkAJi65RiY=";
   };
 
+  outputs = [ "out" "man" ];
+
   nativeBuildInputs = [
     gettext
     meson
@@ -62,8 +64,6 @@ stdenv.mkDerivation (finalAttrs: {
     xwayland
   ];
 
-  outputs = [ "out" "man" ];
-
   strictDeps = true;
 
   mesonFlags = [
@@ -77,8 +77,9 @@ stdenv.mkDerivation (finalAttrs: {
   meta = {
     homepage = "https://github.com/labwc/labwc";
     description = "A Wayland stacking compositor, inspired by Openbox";
-    changelog = "https://raw.githubusercontent.com/labwc/labwc/${finalAttrs.version}/NEWS.md";
-    license = lib.licenses.gpl2Plus;
+    changelog = "https://github.com/labwc/labwc/blob/${finalAttrs.src.rev}/NEWS.md";
+    license = with lib.licenses; [ gpl2Plus ];
+    mainProgram = "labwc";
     maintainers = with lib.maintainers; [ AndersonTorres ];
     inherit (wayland.meta) platforms;
   };