summary refs log tree commit diff
path: root/pkgs/development/libraries/gtk-layer-shell
diff options
context:
space:
mode:
authorDonovan Glover <donovan@dglover.co>2023-08-02 22:45:34 -0400
committerDonovan Glover <donovan@dglover.co>2023-08-02 22:45:34 -0400
commitf6adcdce4a046163504d5d27ebd4cc705cd67c2a (patch)
tree38c6b84394086f1c12d55e3cd57a6e14a815f73d /pkgs/development/libraries/gtk-layer-shell
parentef99fa5c5ed624460217c31ac4271cfb5cb2502c (diff)
downloadnixpkgs-f6adcdce4a046163504d5d27ebd4cc705cd67c2a.tar
nixpkgs-f6adcdce4a046163504d5d27ebd4cc705cd67c2a.tar.gz
nixpkgs-f6adcdce4a046163504d5d27ebd4cc705cd67c2a.tar.bz2
nixpkgs-f6adcdce4a046163504d5d27ebd4cc705cd67c2a.tar.lz
nixpkgs-f6adcdce4a046163504d5d27ebd4cc705cd67c2a.tar.xz
nixpkgs-f6adcdce4a046163504d5d27ebd4cc705cd67c2a.tar.zst
nixpkgs-f6adcdce4a046163504d5d27ebd4cc705cd67c2a.zip
gtk-layer-shell: 0.8.0 -> 0.8.1
Diffstat (limited to 'pkgs/development/libraries/gtk-layer-shell')
-rw-r--r--pkgs/development/libraries/gtk-layer-shell/default.nix29
1 files changed, 7 insertions, 22 deletions
diff --git a/pkgs/development/libraries/gtk-layer-shell/default.nix b/pkgs/development/libraries/gtk-layer-shell/default.nix
index 92fc02bfa2c..4fbf6f3a6e3 100644
--- a/pkgs/development/libraries/gtk-layer-shell/default.nix
+++ b/pkgs/development/libraries/gtk-layer-shell/default.nix
@@ -1,7 +1,6 @@
 { lib
 , stdenv
 , fetchFromGitHub
-, fetchpatch
 , meson
 , ninja
 , pkg-config
@@ -15,9 +14,9 @@
 , vala
 }:
 
-stdenv.mkDerivation rec {
+stdenv.mkDerivation (finalAttrs: {
   pname = "gtk-layer-shell";
-  version = "0.8.0";
+  version = "0.8.1";
 
   outputs = [ "out" "dev" "devdoc" ];
   outputBin = "devdoc"; # for demo
@@ -25,25 +24,10 @@ stdenv.mkDerivation rec {
   src = fetchFromGitHub {
     owner = "wmww";
     repo = "gtk-layer-shell";
-    rev = "v${version}";
-    sha256 = "sha256-Z7jPYLKgkwMNXu80aaZ2vNj57LbN+X2XqlTTq6l0wTE=";
+    rev = "v${finalAttrs.version}";
+    hash = "sha256-WW5sdOAJUKbSLWUpI9BK7O63/Uli+Tu9Tj9ccCOREPM=";
   };
 
-  patches = [
-    # https://github.com/wmww/gtk-layer-shell/pull/146
-    # Mark wayland-scanner as a build-time dependency
-    (fetchpatch {
-      url = "https://github.com/wmww/gtk-layer-shell/commit/6fd16352e5b35fefc91aa44e73671addaaa95dfc.patch";
-      hash = "sha256-U/mxmcRcZnsF0fvWW0axo6ajqW40NuOzNIAzoLCboRM=";
-    })
-    # https://github.com/wmww/gtk-layer-shell/pull/147
-    # Remove redundant dependency check for gtk-doc
-    (fetchpatch {
-      url = "https://github.com/wmww/gtk-layer-shell/commit/124ccc2772d5ecbb40b54872c22e594c74bd39bc.patch";
-      hash = "sha256-WfrWe9UJCp1RvVJhURAxGw4jzqPjoaP6182jVdoEAQs=";
-    })
-  ];
-
   strictDeps = true;
 
   depsBuildBuild = [
@@ -74,8 +58,9 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     description = "A library to create panels and other desktop components for Wayland using the Layer Shell protocol";
+    homepage = "https://github.com/wmww/gtk-layer-shell";
     license = licenses.lgpl3Plus;
-    maintainers = with maintainers; [ eonpatapon ];
+    maintainers = with maintainers; [ eonpatapon donovanglover ];
     platforms = platforms.linux;
   };
-}
+})