about summary refs log tree commit diff
path: root/pkgs/applications/science/machine-learning/shogun
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-11-08 14:42:29 -0600
committerMatthew Bauer <mjbauer95@gmail.com>2018-11-08 14:42:29 -0600
commit3dcb8c10f5b5e58e6e409b57a4182807f3f3ef37 (patch)
tree1acda1c6a069acca3336849d5cf1bac6fd5d045c /pkgs/applications/science/machine-learning/shogun
parentf2c49bd4cb2ff498a68b838ee56757e614f78704 (diff)
shogun: remove liblapack
not needed anymore
Diffstat (limited to 'pkgs/applications/science/machine-learning/shogun')
-rw-r--r--pkgs/applications/science/machine-learning/shogun/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/science/machine-learning/shogun/default.nix b/pkgs/applications/science/machine-learning/shogun/default.nix
index 402ef0d958827..8de78092bd84f 100644
--- a/pkgs/applications/science/machine-learning/shogun/default.nix
+++ b/pkgs/applications/science/machine-learning/shogun/default.nix
@@ -4,7 +4,7 @@
 # maths
 , openblasCompat, eigen, nlopt, lp_solve, colpack
 # libraries
-, libarchive, liblapack, libxml2
+, libarchive, libxml2
 # extra support
 , pythonSupport ? true, pythonPackages ? null
 , opencvSupport ? false, opencv ? null
@@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
 
   buildInputs = with lib; [
       openblasCompat bzip2 ccache cmake colpack curl ctags eigen hdf5 json_c lp_solve lzma lzo
-      protobuf nlopt snappy swig (libarchive.dev) liblapack libxml2
+      protobuf nlopt snappy swig (libarchive.dev) libxml2
     ]
     ++ optionals (pythonSupport) (with pythonPackages; [ python ply numpy ])
     ++ optional  (opencvSupport) opencv;