semver: init at v1.0.0
Release notes https://github.com/catouc/semver-go/releases/tag/v1.0.0
This commit is contained in:
parent
953c8abe0a
commit
6d4a903dfc
23
pkgs/applications/misc/semver/default.nix
Normal file
23
pkgs/applications/misc/semver/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub, git }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "semver";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "catouc";
|
||||
repo = "semver-go";
|
||||
rev = "v${version}";
|
||||
sha256 = "0v3j7rw917wnmp4lyjscqzk4qf4azfiz70ynbq3wl4gwp1m783vv";
|
||||
};
|
||||
|
||||
vendorSha256 = null;
|
||||
nativeBuildInputs = [ git ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/catouc/semver-go";
|
||||
description = "A small CLI to fish out the current or next semver version from a git repository";
|
||||
maintainers = with maintainers; [ catouc ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -31715,6 +31715,8 @@ with pkgs;
|
||||
|
||||
semiphemeral = callPackage ../tools/misc/semiphemeral { };
|
||||
|
||||
semver = callPackage ../applications/misc/semver { };
|
||||
|
||||
sent = callPackage ../applications/misc/sent { };
|
||||
|
||||
seq24 = callPackage ../applications/audio/seq24 { };
|
||||
|
Loading…
Reference in New Issue
Block a user