semver-tool: init at 2.1.0
Cherry-picked from: https://github.com/alyssais/nixpkgs/commit/eeb175169f65201bd47ece5d0593d3c7c386077d 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:
committed by
Matthias Beyer
parent
9ba43c07cb
commit
98c22f2d03
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user