summary refs log tree commit diff
path: root/pkgs/applications/science/machine-learning/shogun
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-14 19:12:53 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-04-04 19:49:52 +0200
commit3453b89f4bba270e2d82f6248b09b9595bb47f4b (patch)
tree4b2b84a0ae5d4ba15360e8317b5dfaefbe7ab340 /pkgs/applications/science/machine-learning/shogun
parentd24e2d1b0ba77da1ea5b91fcf6cf869d42880dc5 (diff)
downloadnixpkgs-3453b89f4bba270e2d82f6248b09b9595bb47f4b.tar
nixpkgs-3453b89f4bba270e2d82f6248b09b9595bb47f4b.tar.gz
nixpkgs-3453b89f4bba270e2d82f6248b09b9595bb47f4b.tar.bz2
nixpkgs-3453b89f4bba270e2d82f6248b09b9595bb47f4b.tar.lz
nixpkgs-3453b89f4bba270e2d82f6248b09b9595bb47f4b.tar.xz
nixpkgs-3453b89f4bba270e2d82f6248b09b9595bb47f4b.tar.zst
nixpkgs-3453b89f4bba270e2d82f6248b09b9595bb47f4b.zip
lzma: deprecate alias
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 7d052c6c5e9..47b826078f2 100644
--- a/pkgs/applications/science/machine-learning/shogun/default.nix
+++ b/pkgs/applications/science/machine-learning/shogun/default.nix
@@ -1,6 +1,6 @@
 { stdenv, lib, fetchFromGitHub, fetchpatch, fetchurl, cmake, ctags, swig
 # data, compression
-, bzip2, curl, hdf5, json_c, lzma, lzo, protobuf, snappy
+, bzip2, curl, hdf5, json_c, xz, lzo, protobuf, snappy
 # maths
 , blas, lapack, eigen, nlopt, lp_solve, colpack, glpk
 # libraries
@@ -67,7 +67,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ cmake ];
   buildInputs = with lib; [
-      blas lapack bzip2 colpack curl ctags eigen hdf5 json_c lp_solve lzma lzo
+      blas lapack bzip2 colpack curl ctags eigen hdf5 json_c lp_solve xz lzo
       protobuf nlopt snappy swig (libarchive.dev) libxml2 lapack glpk
     ]
     ++ optionals (pythonSupport) (with pythonPackages; [ python ply numpy ])