mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
vigra: use python2
This commit is contained in:
parent
b08c00f67d
commit
abaa750207
2 changed files with 6 additions and 5 deletions
|
@ -1,7 +1,10 @@
|
|||
{ stdenv, fetchurl, boost, cmake, doxygen, fftw, fftwSinglePrec, hdf5, ilmbase
|
||||
, libjpeg, libpng, libtiff, numpy, openexr, python }:
|
||||
, libjpeg, libpng, libtiff, openexr, python2Packages }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
let
|
||||
inherit (python2Packages) python numpy;
|
||||
# Might want to use `python2.withPackages(ps: [ps.numpy]);` here...
|
||||
in stdenv.mkDerivation rec {
|
||||
name = "vigra-${version}";
|
||||
version = "1.10.0";
|
||||
|
||||
|
|
|
@ -9315,9 +9315,7 @@ in
|
|||
|
||||
vid-stab = callPackage ../development/libraries/vid-stab { };
|
||||
|
||||
vigra = callPackage ../development/libraries/vigra {
|
||||
inherit (pkgs.pythonPackages) numpy;
|
||||
};
|
||||
vigra = callPackage ../development/libraries/vigra { };
|
||||
|
||||
vlock = callPackage ../misc/screensavers/vlock { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue