Adding FSharp compiler
svn path=/nixpkgs/trunk/; revision=33758
This commit is contained in:
@@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv, fetchurl, mono, unzip, pkgconfig
|
||||||
|
} :
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "fsharp";
|
||||||
|
date = "2011-08-10";
|
||||||
|
name = "${pname}-${date}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://download.mono-project.com/sources/fsharp/fsharp-cc126f2.zip";
|
||||||
|
sha256 = "03j2ypnfddl2zpvg8ivhafjy8dlz49b38rdy89l8c3irxdsb7k6i";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [mono unzip pkgconfig];
|
||||||
|
|
||||||
|
sourceRoot = "fsharp";
|
||||||
|
|
||||||
|
# To fix this error when running:
|
||||||
|
# The file "/nix/store/path/whatever.exe" is an not a valid CIL image
|
||||||
|
dontStrip = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A functional CLI language";
|
||||||
|
homepage = "http://tryfsharp.org/";
|
||||||
|
license = stdenv.lib.licenses.some;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.raskin ];
|
||||||
|
platforms = with stdenv.lib.platforms; linux;
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -2319,6 +2319,8 @@ let
|
|||||||
inherit cmake;
|
inherit cmake;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fsharp = callPackage ../development/compilers/fsharp {};
|
||||||
|
|
||||||
go = callPackage ../development/compilers/go { };
|
go = callPackage ../development/compilers/go { };
|
||||||
|
|
||||||
gprolog = callPackage ../development/compilers/gprolog { };
|
gprolog = callPackage ../development/compilers/gprolog { };
|
||||||
|
|||||||
Reference in New Issue
Block a user