gtk-layer-shell: 0.8.0 -> 0.8.1

+7 -22
+7 -22
pkgs/development/libraries/gtk-layer-shell/default.nix
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 - , fetchpatch 5 , meson 6 , ninja 7 , pkg-config ··· 15 , vala 16 }: 17 18 - stdenv.mkDerivation rec { 19 pname = "gtk-layer-shell"; 20 - version = "0.8.0"; 21 22 outputs = [ "out" "dev" "devdoc" ]; 23 outputBin = "devdoc"; # for demo ··· 25 src = fetchFromGitHub { 26 owner = "wmww"; 27 repo = "gtk-layer-shell"; 28 - rev = "v${version}"; 29 - sha256 = "sha256-Z7jPYLKgkwMNXu80aaZ2vNj57LbN+X2XqlTTq6l0wTE="; 30 }; 31 32 - patches = [ 33 - # https://github.com/wmww/gtk-layer-shell/pull/146 34 - # Mark wayland-scanner as a build-time dependency 35 - (fetchpatch { 36 - url = "https://github.com/wmww/gtk-layer-shell/commit/6fd16352e5b35fefc91aa44e73671addaaa95dfc.patch"; 37 - hash = "sha256-U/mxmcRcZnsF0fvWW0axo6ajqW40NuOzNIAzoLCboRM="; 38 - }) 39 - # https://github.com/wmww/gtk-layer-shell/pull/147 40 - # Remove redundant dependency check for gtk-doc 41 - (fetchpatch { 42 - url = "https://github.com/wmww/gtk-layer-shell/commit/124ccc2772d5ecbb40b54872c22e594c74bd39bc.patch"; 43 - hash = "sha256-WfrWe9UJCp1RvVJhURAxGw4jzqPjoaP6182jVdoEAQs="; 44 - }) 45 - ]; 46 - 47 strictDeps = true; 48 49 depsBuildBuild = [ ··· 74 75 meta = with lib; { 76 description = "A library to create panels and other desktop components for Wayland using the Layer Shell protocol"; 77 license = licenses.lgpl3Plus; 78 - maintainers = with maintainers; [ eonpatapon ]; 79 platforms = platforms.linux; 80 }; 81 - }
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 , meson 5 , ninja 6 , pkg-config ··· 14 , vala 15 }: 16 17 + stdenv.mkDerivation (finalAttrs: { 18 pname = "gtk-layer-shell"; 19 + version = "0.8.1"; 20 21 outputs = [ "out" "dev" "devdoc" ]; 22 outputBin = "devdoc"; # for demo ··· 24 src = fetchFromGitHub { 25 owner = "wmww"; 26 repo = "gtk-layer-shell"; 27 + rev = "v${finalAttrs.version}"; 28 + hash = "sha256-WW5sdOAJUKbSLWUpI9BK7O63/Uli+Tu9Tj9ccCOREPM="; 29 }; 30 31 strictDeps = true; 32 33 depsBuildBuild = [ ··· 58 59 meta = with lib; { 60 description = "A library to create panels and other desktop components for Wayland using the Layer Shell protocol"; 61 + homepage = "https://github.com/wmww/gtk-layer-shell"; 62 license = licenses.lgpl3Plus; 63 + maintainers = with maintainers; [ eonpatapon donovanglover ]; 64 platforms = platforms.linux; 65 }; 66 + })