From 3dcb8c10f5b5e58e6e409b57a4182807f3f3ef37 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Thu, 8 Nov 2018 14:42:29 -0600 Subject: [PATCH] shogun: remove liblapack not needed anymore --- pkgs/applications/science/machine-learning/shogun/default.nix | 4 ++-- 1 file 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 402ef0d9588..8de78092bd8 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;