dotnet: Add FSharpDataSQLProvider, FsPickler and Suave

This commit is contained in:
Luca Bruno 2015-06-12 17:06:32 +02:00
parent 32ed601883
commit 90f0bb83c3

View file

@ -14,6 +14,8 @@
let self = dotnetPackages // overrides; dotnetPackages = with self; {
# BINARY PACKAGES
Autofac = fetchNuGet {
baseName = "Autofac";
version = "3.5.2";
@ -44,6 +46,13 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; {
outputFiles = [ "lib/net40/*" ];
};
FSharpDataSQLProvider = fetchNuGet {
baseName = "SQLProvider";
version = "0.0.9-alpha";
sha256 = "1wmgr5ca9hh6a7f0s8yc87n6arn7bq6nwc8n4crbbdil4r0bw46w";
outputFiles = [ "lib/net40/*" ];
};
FsCheck = fetchNuGet {
baseName = "FsCheck";
version = "1.0.4";
@ -58,6 +67,13 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; {
outputFiles = [ "lib/net45/*" ];
};
FsPickler = fetchNuGet {
baseName = "FsPickler";
version = "1.2.9";
sha256 = "12fgcj7pvffsj1s1kaz15j22i1n98dy5mf4z84555xdf7mw7dpm4";
outputFiles = [ "lib/net45/*" ];
};
FsUnit = fetchNuGet {
baseName = "FsUnit";
version = "1.3.0.1";
@ -87,6 +103,15 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; {
outputFiles = [ "lib/portable-net45+win8+wp8+wpa81/*" ];
};
Suave = fetchNuGet {
baseName = "Suave";
version = "0.29.0";
sha256 = "0rgqy0afwm50gq5ca94w16s565yx5wf961683ghfld6ir0k3dhln";
outputFiles = [ "lib/net40/*" ];
};
# SOURCE PACKAGES
ExtCore = buildDotnetPackage rec {
baseName = "ExtCore";
version = "0.8.46";
@ -492,4 +517,5 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; {
platforms = with stdenv.lib.platforms; linux;
};
};
}; in self