dput-ng: fix eval (#364540)
[NixPkgs.git] / pkgs / by-name / se / semver / package.nix
bloba73fea385575ed511fa1a18fde3e9e41eb19788f
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5   git,
6 }:
8 buildGoModule rec {
9   pname = "semver";
10   version = "1.0.0";
12   src = fetchFromGitHub {
13     owner = "catouc";
14     repo = "semver-go";
15     rev = "v${version}";
16     sha256 = "0v3j7rw917wnmp4lyjscqzk4qf4azfiz70ynbq3wl4gwp1m783vv";
17   };
19   vendorHash = null;
20   nativeBuildInputs = [ git ];
22   meta = with lib; {
23     homepage = "https://github.com/catouc/semver-go";
24     description = "Small CLI to fish out the current or next semver version from a git repository";
25     maintainers = with maintainers; [ catouc ];
26     license = licenses.mit;
27     mainProgram = "semver";
28   };