Skip to content

Commit

Permalink
semver-tool: init at 2.1.0
Browse files Browse the repository at this point in the history
Cherry-picked from: alyssais@eeb1751
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 #50945.
>
> [1]: https://github.com/npm/node-semver
> [2]: #50945

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
  • Loading branch information
alyssais authored and matthiasbeyer committed Mar 31, 2019
1 parent 9ba43c0 commit 98c22f2
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
32 changes: 32 additions & 0 deletions pkgs/development/tools/misc/semver-tool/default.nix
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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;

Expand Down

0 comments on commit 98c22f2

Please sign in to comment.