Merge pull request #158462 from jojosch/protoc-gen-twirp_php-update

protoc-gen-twirp_php: 0.8.0 -> 0.8.1

authored by Artturi and committed by GitHub 8ca45baf c126babb

+6 -2
+6 -2
pkgs/development/tools/protoc-gen-twirp_php/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "protoc-gen-twirp_php"; 5 - version = "0.8.0"; 5 + version = "0.8.1"; 6 6 7 7 # fetchFromGitHub currently not possible, because go.mod and go.sum are export-ignored 8 8 src = fetchgit { 9 9 url = "https://github.com/twirphp/twirp.git"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-TaHfyYoWsA/g5xZFxIMNwE1w6Dd9Cq5bp1gpQudYLs0="; 11 + sha256 = "sha256-5PACgKqc8rWqaA6Syj5NyxHm3827yd67tm0mwVSMnWQ="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-qQFlBviRISEnPBt0q5391RqUrPTI/QDxg3MNfwWE8MI="; 15 15 16 16 subPackages = [ "protoc-gen-twirp_php" ]; 17 + 18 + ldflags = [ 19 + "-X main.version=${version}" 20 + ]; 17 21 18 22 meta = with lib; { 19 23 description = "PHP port of Twitch's Twirp RPC framework";