Merge pull request #6281 from ehmry/nim

nim: initial package at 0.10.2
This commit is contained in:
lethalman 2015-02-10 16:08:07 +01:00
commit e7762c55bb
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "nim-0.10.2";
buildInputs = [ unzip ];
src = fetchurl {
url = "http://nim-lang.org/download/${name}.zip";
sha256 = "1jkrf8wgva7kfl0vqs1f3scidi6a85r6bkz2zf90k8gdpin9idrg";
};
buildPhase = "sh build.sh";
installPhase =
''
substituteInPlace install.sh --replace '$1/nim' "$out"
sh install.sh $out
'';
meta = with stdenv.lib;
{ description = "Statically typed, imperative programming language";
homepage = http://nim-lang.org/;
license = licenses.mit;
maintainers = with maintainers; [ emery ];
platforms = platforms.linux; # arbitrary
};
}

View file

@ -3714,6 +3714,8 @@ let
mozart-binary = callPackage ../development/compilers/mozart/binary.nix { };
mozart = mozart-binary;
nim = callPackage ../development/compilers/nim { };
neko = callPackage ../development/compilers/neko { };
nasm = callPackage ../development/compilers/nasm { };