semver-tool: 3.2.0 -> 3.3.0

* semver-tool: 3.2.0 -> 3.3.0 (#159745)

Relicensed to Apache License 2.0 as of v3.3.0

Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
This commit is contained in:
R. RyanTM 2022-02-15 12:29:36 -08:00 committed by GitHub
parent 504157bbe8
commit c3f2886c79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "semver-tool";
version = "3.2.0";
version = "3.3.0";
src = fetchFromGitHub {
owner = "fsaintjacques";
repo = pname;
rev = version;
sha256 = "sha256-coy/g4nEvSN+0/aqK2r3EEIaoUcnsZhzX66H1qsK9ac=";
sha256 = "sha256-LqZTHFiis4BYL1bnJoeuW56wf8+o38Ygs++CV9CKNhM=";
};
dontBuild = true; # otherwise we try to 'make' which fails.
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://github.com/fsaintjacques/semver-tool";
description = "semver bash implementation";
license = licenses.gpl3Plus;
license = licenses.asl20;
platforms = platforms.unix;
maintainers = [ maintainers.qyliss ];
};