summary refs log tree commit diff
path: root/pkgs/development/compilers/fsharp
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2014-08-20 02:03:18 -0500
committerAustin Seipp <aseipp@pobox.com>2014-08-20 02:03:18 -0500
commitd95ae1cc89479e40fd1330a853dc0de7b17c1060 (patch)
treea8cf0c3ee85b88cef089f5804d1d8b780f22a512 /pkgs/development/compilers/fsharp
parenta8b59789d0175a2e6aa977faf25f3e25f4504019 (diff)
downloadnixlib-d95ae1cc89479e40fd1330a853dc0de7b17c1060.tar
nixlib-d95ae1cc89479e40fd1330a853dc0de7b17c1060.tar.gz
nixlib-d95ae1cc89479e40fd1330a853dc0de7b17c1060.tar.bz2
nixlib-d95ae1cc89479e40fd1330a853dc0de7b17c1060.tar.lz
nixlib-d95ae1cc89479e40fd1330a853dc0de7b17c1060.tar.xz
nixlib-d95ae1cc89479e40fd1330a853dc0de7b17c1060.tar.zst
nixlib-d95ae1cc89479e40fd1330a853dc0de7b17c1060.zip
fsharp: 3.1.0 -> 3.1.1.25
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'pkgs/development/compilers/fsharp')
-rw-r--r--pkgs/development/compilers/fsharp/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/development/compilers/fsharp/default.nix b/pkgs/development/compilers/fsharp/default.nix
index 1d7955045893..99e893c79d1c 100644
--- a/pkgs/development/compilers/fsharp/default.nix
+++ b/pkgs/development/compilers/fsharp/default.nix
@@ -1,13 +1,12 @@
-{ stdenv, fetchgit, mono, pkgconfig, autoconf, automake, which }:
+{ stdenv, fetchurl, mono, pkgconfig, autoconf, automake, which }:
 
 stdenv.mkDerivation rec {
   name = "fsharp-${version}";
-  version = "3.1.0";
+  version = "3.1.1.25";
 
-  src = fetchgit {
-    url = "https://github.com/fsharp/fsharp";
-    rev = "refs/heads/fsharp_31";
-    sha256 = "0d41ae31c57ec9ac8a4ea149b615ae085f3774b8877d8e53ddbf68856c32eda0";
+  src = fetchurl {
+    url = "https://github.com/fsharp/fsharp/archive/${version}.tar.gz";
+    sha256 = "1vrgw7qk4g78mjjapc1a1frribcgya4cdrwahv3i26z9s10g5h3d";
   };
 
   buildInputs = [ mono pkgconfig autoconf automake which ];