summary refs log tree commit diff
path: root/pkgs/development/libraries/onnxruntime
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-10-30 11:25:38 -0700
committerJon <jonringer@users.noreply.github.com>2019-11-05 09:32:27 -0800
commit65db5ce85c1fcd2c47240a9abb229c00305b78e6 (patch)
tree68db2933dffe6e186453ce396340707d9493ba2c /pkgs/development/libraries/onnxruntime
parentf605e22cc396416ad13777ef666e577533d4f67d (diff)
downloadnixpkgs-65db5ce85c1fcd2c47240a9abb229c00305b78e6.tar
nixpkgs-65db5ce85c1fcd2c47240a9abb229c00305b78e6.tar.gz
nixpkgs-65db5ce85c1fcd2c47240a9abb229c00305b78e6.tar.bz2
nixpkgs-65db5ce85c1fcd2c47240a9abb229c00305b78e6.tar.lz
nixpkgs-65db5ce85c1fcd2c47240a9abb229c00305b78e6.tar.xz
nixpkgs-65db5ce85c1fcd2c47240a9abb229c00305b78e6.tar.zst
nixpkgs-65db5ce85c1fcd2c47240a9abb229c00305b78e6.zip
onnxruntime: 0.5.0 -> 1.0.0
Diffstat (limited to 'pkgs/development/libraries/onnxruntime')
-rw-r--r--pkgs/development/libraries/onnxruntime/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/development/libraries/onnxruntime/default.nix b/pkgs/development/libraries/onnxruntime/default.nix
index b5549c6735f..33bc4c6e82c 100644
--- a/pkgs/development/libraries/onnxruntime/default.nix
+++ b/pkgs/development/libraries/onnxruntime/default.nix
@@ -4,13 +4,13 @@
 
 stdenv.mkDerivation rec {
   pname = "onnxruntime";
-  version = "0.5.0";
+  version = "1.0.0";
 
   src = fetchFromGitHub {
     owner = "microsoft";
     repo = "onnxruntime";
     rev = "v${version}";
-    sha256 = "0s8ylc5xr55490hbz7zn3hnp9dnyp92d320ln8xw5hqkw3mgyr3p";
+    sha256 = "1d28lzrjnq69yl8j9ncxlsxl0bniacn3hnsr9van10zgp527436v";
     # TODO: use nix-versions of grpc, onnx, eigen, googletest, etc.
     # submodules increase src size and compile times significantly
     # not currently feasible due to how integrated cmake build is with git
@@ -43,6 +43,8 @@ stdenv.mkDerivation rec {
     rm -r $out/bin   # ctest runner
   '';
 
+  enableParallelBuilding = true;
+
   meta = with stdenv.lib; {
     description = "Cross-platform, high performance scoring engine for ML models";
     longDescription = ''
@@ -55,6 +57,9 @@ stdenv.mkDerivation rec {
       compatibility.
     '';
     homepage = "https://github.com/microsoft/onnxruntime";
+    changelog = "https://github.com/microsoft/onnxruntime/releases";
+    # https://github.com/microsoft/onnxruntime/blob/master/BUILD.md#architectures
+    platforms = platforms.unix;
     license = licenses.mit;
     maintainers = with maintainers; [ jonringer ];
   };