evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / se / semver / package.nix
blob750d86eea1139d1a8f6863683c04b5b77b7a8ab8
1 { lib, buildGoModule, fetchFromGitHub, git }:
3 buildGoModule rec {
4   pname = "semver";
5   version = "1.0.0";
7   src = fetchFromGitHub {
8     owner = "catouc";
9     repo = "semver-go";
10     rev = "v${version}";
11     sha256 = "0v3j7rw917wnmp4lyjscqzk4qf4azfiz70ynbq3wl4gwp1m783vv";
12   };
14   vendorHash = null;
15   nativeBuildInputs = [ git ];
17   meta = with lib; {
18     homepage = "https://github.com/catouc/semver-go";
19     description = "Small CLI to fish out the current or next semver version from a git repository";
20     maintainers = with maintainers; [ catouc ];
21     license = licenses.mit;
22     mainProgram = "semver";
23   };