Merge pull request #261050 from OPNA2608/update/wlcs

wlcs: 1.6.0 -> 1.6.1

authored by Weijia Wang and committed by GitHub 67604b2a 198db141

+18 -7
+18 -7
pkgs/development/tools/wlcs/default.nix
··· 2 , lib 3 , gitUpdater 4 , fetchFromGitHub 5 , cmake 6 , pkg-config 7 , boost 8 , gtest 9 , wayland 10 }: 11 12 - stdenv.mkDerivation rec { 13 pname = "wlcs"; 14 - version = "1.6.0"; 15 16 src = fetchFromGitHub { 17 owner = "MirServer"; 18 repo = "wlcs"; 19 - rev = "v${version}"; 20 - hash = "sha256-+YM5dT45p9wk0gJeATmhWDFJJMaUdcTfw8GLS/vMkw4="; 21 }; 22 23 nativeBuildInputs = [ 24 cmake 25 pkg-config 26 ]; 27 28 buildInputs = [ ··· 31 wayland 32 ]; 33 34 - passthru.updateScript = gitUpdater { 35 - rev-prefix = "v"; 36 }; 37 38 meta = with lib; { ··· 57 license = licenses.gpl3Only; 58 maintainers = with maintainers; [ OPNA2608 ]; 59 platforms = platforms.linux; 60 }; 61 - }
··· 2 , lib 3 , gitUpdater 4 , fetchFromGitHub 5 + , testers 6 , cmake 7 , pkg-config 8 , boost 9 , gtest 10 , wayland 11 + , wayland-scanner 12 }: 13 14 + stdenv.mkDerivation (finalAttrs: { 15 pname = "wlcs"; 16 + version = "1.6.1"; 17 18 src = fetchFromGitHub { 19 owner = "MirServer"; 20 repo = "wlcs"; 21 + rev = "v${finalAttrs.version}"; 22 + hash = "sha256-YYrhcN1BSJISn/7lxu7Db5YaOK+okdHVJuMwqSDzAIU="; 23 }; 24 25 + strictDeps = true; 26 + 27 nativeBuildInputs = [ 28 cmake 29 pkg-config 30 + wayland-scanner 31 ]; 32 33 buildInputs = [ ··· 36 wayland 37 ]; 38 39 + passthru = { 40 + tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; 41 + updateScript = gitUpdater { 42 + rev-prefix = "v"; 43 + }; 44 }; 45 46 meta = with lib; { ··· 65 license = licenses.gpl3Only; 66 maintainers = with maintainers; [ OPNA2608 ]; 67 platforms = platforms.linux; 68 + pkgConfigModules = [ 69 + "wlcs" 70 + ]; 71 }; 72 + })