semver-tool: init at 2.1.0

Cherry-picked from: eeb175169f
Although fixed so that it actually builds.

Original message:

> I chose "semver-tool" as the path for this package because "semver" is
> extremely generic, and probably more rightly belongs to node-semver[1]
> (at least judging by GitHub stars), and because "semver-tool" is the
> name of this project's GitHub repository, and because it was the name
> used in the package request[2].
>
> Closes https://github.com/NixOS/nixpkgs/issues/50945.
>
> [1]: https://github.com/npm/node-semver
> [2]: https://github.com/NixOS/nixpkgs/issues/50945

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Alyssa Ross 2018-11-24 13:28:05 +00:00 committed by Matthias Beyer
parent 9ba43c07cb
commit 98c22f2d03
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "semver-tool";
version = "2.1.0";
src = fetchFromGitHub {
owner = "fsaintjacques";
repo = pname;
rev = version;
sha256 = "0lpwsa86qb5w6vbnsn892nb3qpxxx9ifxch8pw3ahzx2dqhdgnrr";
};
dontBuild = true; # otherwise we try to 'make' which fails.
installPhase = ''
runHook preInstall
mkdir -p $out/bin
install src/semver $out/bin
runHook postInstall
'';
meta = with lib; {
homepage = https://github.com/fsaintjacques/semver-tool;
description = "semver bash implementation";
license = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = [ maintainers.qyliss ];
};
}

View file

@ -9264,6 +9264,8 @@ in
selendroid = callPackage ../development/tools/selenium/selendroid { };
semver-tool = callPackage ../development/tools/misc/semver-tool { };
sconsPackages = dontRecurseIntoAttrs (callPackage ../development/tools/build-managers/scons { });
scons = sconsPackages.scons_latest;