fsharp: 3.1.0 -> 3.1.1.25
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
a8b59789d0
commit
d95ae1cc89
|
@ -1,13 +1,12 @@
|
||||||
{ stdenv, fetchgit, mono, pkgconfig, autoconf, automake, which }:
|
{ stdenv, fetchurl, mono, pkgconfig, autoconf, automake, which }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "fsharp-${version}";
|
name = "fsharp-${version}";
|
||||||
version = "3.1.0";
|
version = "3.1.1.25";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchurl {
|
||||||
url = "https://github.com/fsharp/fsharp";
|
url = "https://github.com/fsharp/fsharp/archive/${version}.tar.gz";
|
||||||
rev = "refs/heads/fsharp_31";
|
sha256 = "1vrgw7qk4g78mjjapc1a1frribcgya4cdrwahv3i26z9s10g5h3d";
|
||||||
sha256 = "0d41ae31c57ec9ac8a4ea149b615ae085f3774b8877d8e53ddbf68856c32eda0";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ mono pkgconfig autoconf automake which ];
|
buildInputs = [ mono pkgconfig autoconf automake which ];
|
||||||
|
|
Loading…
Reference in New Issue