ent-go: 0.12.5 -> 0.13.1

https://github.com/ent/ent/compare/v0.12.5...v0.13.1

+7 -7
+7 -7
pkgs/development/tools/ent/default.nix
··· 2 3 buildGoModule rec { 4 pname = "ent-go"; 5 - version = "0.12.5"; 6 7 src = fetchFromGitHub { 8 owner = "ent"; 9 repo = "ent"; 10 rev = "v${version}"; 11 - sha256 = "sha256-g4n9cOTv/35WkvMjrtP2eEcbiu5kiafVXifz1zlEuCY="; 12 }; 13 14 - vendorHash = "sha256-DUi4Ik+qFbx4LIm9MDJ4H9/+sIfCzK8MMGKp0GIGX7w="; 15 16 subPackages = [ "cmd/ent" ]; 17 ··· 29 --zsh <($out/bin/ent completion zsh) 30 ''; 31 32 - meta = with lib; { 33 description = "An entity framework for Go"; 34 homepage = "https://entgo.io/"; 35 downloadPage = "https://github.com/ent/ent"; 36 - license = licenses.asl20; 37 - maintainers = with maintainers; [ ]; 38 mainProgram = "ent"; 39 }; 40 } 41 -
··· 2 3 buildGoModule rec { 4 pname = "ent-go"; 5 + version = "0.13.1"; 6 7 src = fetchFromGitHub { 8 owner = "ent"; 9 repo = "ent"; 10 rev = "v${version}"; 11 + sha256 = "sha256-OEQWNWGVs0QYhPuCGEFgAVaUnfswmvWVt+e0cAdkBKE="; 12 }; 13 14 + vendorHash = "sha256-9KdSGIyi95EVQq9jGoVqK8aq3JXlQXB+Qwlh/Kfz4Oc="; 15 16 subPackages = [ "cmd/ent" ]; 17 ··· 29 --zsh <($out/bin/ent completion zsh) 30 ''; 31 32 + meta = { 33 description = "An entity framework for Go"; 34 homepage = "https://entgo.io/"; 35 + changelog = "https://github.com/ent/ent/releases/tag/v${version}"; 36 downloadPage = "https://github.com/ent/ent"; 37 + license = lib.licenses.asl20; 38 + maintainers = [ ]; 39 mainProgram = "ent"; 40 }; 41 }