yoda: 1.6.7 -> 1.7.0
This commit is contained in:
parent
6f25309122
commit
9e69322761
@ -1,18 +1,19 @@
|
|||||||
{ stdenv, fetchurl, fetchpatch, python2Packages, root, makeWrapper, withRootSupport ? false }:
|
{ stdenv, fetchurl, fetchpatch, python2Packages, root, makeWrapper, zlib, withRootSupport ? false }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "yoda-${version}";
|
name = "yoda-${version}";
|
||||||
version = "1.6.7";
|
version = "1.7.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.hepforge.org/archive/yoda/YODA-${version}.tar.bz2";
|
url = "http://www.hepforge.org/archive/yoda/YODA-${version}.tar.bz2";
|
||||||
sha256 = "05jyv5dypa6d4q1m8wm2qycgq1i0bgzwzzm9qqdj0b43ff2kggra";
|
sha256 = "0fyf6ld1klzlfmr5sl1jxzck4a0h14zfkrff8397rn1fqnqbzmmk";
|
||||||
};
|
};
|
||||||
|
|
||||||
pythonPath = []; # python wrapper support
|
pythonPath = []; # python wrapper support
|
||||||
|
|
||||||
buildInputs = with python2Packages; [ python numpy matplotlib makeWrapper ]
|
buildInputs = with python2Packages; [ python numpy matplotlib makeWrapper ]
|
||||||
++ stdenv.lib.optional withRootSupport root;
|
++ stdenv.lib.optional withRootSupport root;
|
||||||
|
propagatedBuildInputs = [ zlib ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user