about summary refs log tree commit diff
path: root/pkgs/development/libraries/libdecor
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2023-04-22 10:15:31 +0300
committerGitHub <noreply@github.com>2023-04-22 10:15:31 +0300
commit99e52495c14048b300d59d4d77b0c7c1d6a73e52 (patch)
treefd7386b1323c43f3b51401564e85c2ec95d8c5e6 /pkgs/development/libraries/libdecor
parent9be62504e18faf2cf909ad92772b571d9d98501b (diff)
parentfcde5da649b19e2887e855399ada005e40b4c105 (diff)
Merge pull request #227464 from Kiskae/decor-fix-egl
Diffstat (limited to 'pkgs/development/libraries/libdecor')
-rw-r--r--pkgs/development/libraries/libdecor/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/development/libraries/libdecor/default.nix b/pkgs/development/libraries/libdecor/default.nix
index 64fc11f500f04..c3641e843f57d 100644
--- a/pkgs/development/libraries/libdecor/default.nix
+++ b/pkgs/development/libraries/libdecor/default.nix
@@ -7,29 +7,31 @@
 , wayland
 , wayland-protocols
 , wayland-scanner
-, egl-wayland
 , cairo
 , dbus
 , pango
-, libxkbcommon
 }:
 
 stdenv.mkDerivation rec {
   pname = "libdecor";
-  version = "0.1.0";
+  version = "0.1.1";
 
   src = fetchFromGitLab {
-    domain = "gitlab.gnome.org";
-    owner = "jadahl";
+    domain = "gitlab.freedesktop.org";
+    owner = "libdecor";
     repo = "libdecor";
     rev = "${version}";
-    sha256 = "0qdg3r7k086wzszr969s0ljlqdvfqm31zpl8p5h397bw076zr6p2";
+    hash = "sha256-8b6qCqOSDDbhYwAeAaUyI71tSopTkGtCJaxZaJw1vQQ=";
   };
 
   outputs = [ "out" "dev" ];
 
   strictDeps = true;
 
+  mesonFlags = [
+    (lib.mesonBool "demo" false)
+  ];
+
   nativeBuildInputs = [
     meson
     ninja
@@ -40,15 +42,13 @@ stdenv.mkDerivation rec {
   buildInputs = [
     wayland
     wayland-protocols
-    egl-wayland
     cairo
     dbus
     pango
-    libxkbcommon
   ];
 
   meta = with lib; {
-    homepage = "https://gitlab.gnome.org/jadahl/libdecor";
+    homepage = "https://gitlab.freedesktop.org/libdecor/libdecor";
     description = "Client-side decorations library for Wayland clients";
     license = licenses.mit;
     platforms = platforms.linux;