nixpkgs/pkgs/development/compilers/fsharp/default.nix
Michael Raskin 40347a43c2 Fix license
svn path=/nixpkgs/trunk/; revision=33759
2012-04-12 11:57:43 +00:00

29 lines
766 B
Nix

{ 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.asl20;
maintainers = [ stdenv.lib.maintainers.raskin ];
platforms = with stdenv.lib.platforms; linux;
};
}