lol

Merge pull request #258651 from fabaff/container2wasm-bump

container2wasm: 0.4.0 -> 0.5.1

authored by

Fabian Affolter and committed by
GitHub
cbe1e97e 9d2e9d8d

+16 -9
+16 -9
pkgs/development/tools/container2wasm/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "container2wasm"; 8 - version = "0.4.0"; 8 + version = "0.5.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "ktock"; 12 12 repo = "container2wasm"; 13 - rev = "v${version}"; 14 - hash = "sha256-m8pO7xkYjwvDoDreOPuiKNavFWcHn8Fy+F/eArBWRPM="; 13 + rev = "refs/tags/v${version}"; 14 + hash = "sha256-ba40Nu2tVrRSvVeGxlrn0Bw+xQqWeli40lwBWOXSNTA="; 15 15 }; 16 16 17 - vendorHash = "sha256-BiQzNXEZ7O+Xb2SQKYVQRMtm/fSmr+PD+RBLpCywkyQ="; 17 + vendorHash = "sha256-tyfLWmxAzFc0JuSem8L0HPG4wy9Gxdp8F/J3DyOx6rQ="; 18 18 19 - ldflags = [ "-s" "-w" ]; 19 + ldflags = [ 20 + "-s" 21 + "-w" 22 + "-X=github.com/ktock/container2wasm/version.Version=${version}" 23 + ]; 20 24 21 - subPackages = [ "cmd/c2w" ]; 25 + subPackages = [ 26 + "cmd/c2w" 27 + ]; 22 28 23 - meta = { 29 + meta = with lib; { 24 30 description = "Container to WASM converter"; 25 31 homepage = "https://github.com/ktock/container2wasm"; 26 - license = lib.licenses.asl20; 27 - maintainers = with lib.maintainers; [ dit7ya ]; 32 + changelog = "https://github.com/ktock/container2wasm/releases/tag/v${version}"; 33 + license = licenses.asl20; 34 + maintainers = with maintainers; [ dit7ya ]; 28 35 mainProgram = "c2w"; 29 36 }; 30 37 }