about summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-07-08 07:03:17 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-07-08 07:07:18 +0200
commit59ad9714f6887c317232fca9d01fc1ca6971e67d (patch)
tree18a31a5e28c85562f57ea96e74563c7399b9a4c8 /pkgs/development/compilers
parentf501db5573209c0589621cbdf7a2aa373c2a17c3 (diff)
downloadnixlib-59ad9714f6887c317232fca9d01fc1ca6971e67d.tar
nixlib-59ad9714f6887c317232fca9d01fc1ca6971e67d.tar.gz
nixlib-59ad9714f6887c317232fca9d01fc1ca6971e67d.tar.bz2
nixlib-59ad9714f6887c317232fca9d01fc1ca6971e67d.tar.lz
nixlib-59ad9714f6887c317232fca9d01fc1ca6971e67d.tar.xz
nixlib-59ad9714f6887c317232fca9d01fc1ca6971e67d.tar.zst
nixlib-59ad9714f6887c317232fca9d01fc1ca6971e67d.zip
mono: 5.0.0.48 -> 5.0.1.1
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/mono/5.0.nix4
-rw-r--r--pkgs/development/compilers/mono/generic-cmake.nix3
2 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/development/compilers/mono/5.0.nix b/pkgs/development/compilers/mono/5.0.nix
index e51bbc0c3086..911ba0ae02a7 100644
--- a/pkgs/development/compilers/mono/5.0.nix
+++ b/pkgs/development/compilers/mono/5.0.nix
@@ -2,6 +2,6 @@
 
 callPackage ./generic-cmake.nix (rec {
   inherit Foundation libobjc;
-  version = "5.0.0.48";
-  sha256 = "13n20wmijkhd7vm41lzz1n774rna67d94prl33bz1lly0idsciq0";
+  version = "5.0.1.1";
+  sha256 = "064pgsmanpybpbhpam9jv9n8aicx6mlyb7a91yzh3kcksmqsxmj8";
 })
diff --git a/pkgs/development/compilers/mono/generic-cmake.nix b/pkgs/development/compilers/mono/generic-cmake.nix
index ab232f07d1b2..f6e3f5a0100b 100644
--- a/pkgs/development/compilers/mono/generic-cmake.nix
+++ b/pkgs/development/compilers/mono/generic-cmake.nix
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
   ];
 
   configurePhase = ''
-    substituteInPlace ./autogen.sh --replace "/usr/bin/env sh" "${stdenv.shell}"
+    patchShebangs ./
     ./autogen.sh --prefix $out
   '';
 
@@ -56,7 +56,6 @@ stdenv.mkDerivation rec {
   # LLVM path to point into the Mono LLVM build, since it's private anyway.
   preBuild = ''
     makeFlagsArray=(INSTALL=`type -tp install`)
-    patchShebangs ./
     substituteInPlace mcs/class/corlib/System/Environment.cs --replace /usr/share "$out/share"
   '' + stdenv.lib.optionalString withLLVM ''
     substituteInPlace mono/mini/aot-compiler.c --replace "llvm_path = g_strdup (\"\")" "llvm_path = g_strdup (\"${llvm}/bin/\")"