Merge pull request #13438 from kamilchm/nimble

nimble: init at 0.7.2
This commit is contained in:
Arseniy Seroka 2016-02-25 20:50:46 +03:00
commit edeb5480fc
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,43 @@
{ stdenv, fetchFromGitHub, nim }:
let
srcs = {
nimble = fetchFromGitHub {
owner = "nim-lang";
repo = "nimble";
rev = "v0.7.2";
sha256 = "0j9b519cv91xwn6k0alynakh7grbq4m6yy5bdwdrqmc7lag35r0i";
};
nim = fetchFromGitHub {
owner = "nim-lang";
repo = "nim";
rev = "v0.13.0";
sha256 = "14grhkwdva4wmvihm1413ly86sf0qk96bd473pvsbgkp46cg8rii";
};
};
in
stdenv.mkDerivation rec {
name = "nimble-${version}";
version = "0.7.2";
src = srcs.nimble;
buildInputs = [ nim ];
postUnpack = ''
mkdir -p $sourceRoot/vendor
ln -s ${srcs.nim} $sourceRoot/vendor/nim
'';
buildPhase = ''
nim c src/nimble
'';
installPhase = "installBin src/nimble";
meta = with stdenv.lib; {
description = "Package manager for the Nim programming language";
homepage = https://github.com/nim-lang/nimble;
license = licenses.bsd2;
maintainers = with maintainers; [ kamilchm ];
platforms = platforms.linux ++ platforms.darwin;
};
}

View File

@ -4551,6 +4551,7 @@ let
mozart = mozart-binary;
nim = callPackage ../development/compilers/nim { };
nimble = callPackage ../development/tools/nimble { };
neko = callPackage ../development/compilers/neko { };