From 3984468692b5a794e71bec665fc89ca874d08c79 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Mon, 4 May 2015 08:34:22 -0400 Subject: [PATCH] nim: 0.10.2 -> 0.11.0 --- pkgs/development/compilers/nim/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/nim/default.nix b/pkgs/development/compilers/nim/default.nix index 3b8f46eb6881..3da27d72814a 100644 --- a/pkgs/development/compilers/nim/default.nix +++ b/pkgs/development/compilers/nim/default.nix @@ -1,18 +1,19 @@ { stdenv, fetchurl, unzip }: stdenv.mkDerivation rec { - name = "nim-0.10.2"; + name = "nim-0.11.0"; buildInputs = [ unzip ]; src = fetchurl { url = "http://nim-lang.org/download/${name}.zip"; - sha256 = "1jkrf8wgva7kfl0vqs1f3scidi6a85r6bkz2zf90k8gdpin9idrg"; + sha256 = "0l19rrp6nhwhr2z33np4x32c35iba0hhv6w3qwj1sk8bjfpvz4cw"; }; buildPhase = "sh build.sh"; installPhase = '' + installBin bin/nim substituteInPlace install.sh --replace '$1/nim' "$out" sh install.sh $out '';