yoda: 1.6.5 -> 1.6.6, provide version with ROOT

This commit is contained in:
Dmitry Kalinkin 2017-04-02 23:26:05 -04:00
parent 497b34cb7c
commit 23f7087dc5
No known key found for this signature in database
GPG key ID: 5157B3EC8B2CA333
2 changed files with 8 additions and 5 deletions

View file

@ -1,17 +1,17 @@
{ stdenv, fetchurl, python2Packages, makeWrapper }:
{ stdenv, fetchurl, python2Packages, root, makeWrapper }:
stdenv.mkDerivation rec {
name = "yoda-${version}";
version = "1.6.5";
version = "1.6.6";
src = fetchurl {
url = "http://www.hepforge.org/archive/yoda/YODA-${version}.tar.bz2";
sha256 = "1i8lmj63cd3qnxl9k2cb1abap2pirhx7ffinm834wbpy9iszwxql";
sha256 = "088xx4q6b03bnj6xg5189m8wsznhal8aj3jk40sbj24idm4jl5yg";
};
pythonPath = []; # python wrapper support
buildInputs = with python2Packages; [ python numpy matplotlib makeWrapper ];
buildInputs = with python2Packages; [ python numpy matplotlib root makeWrapper ];
enableParallelBuilding = true;

View file

@ -17698,7 +17698,10 @@ with pkgs;
thepeg = callPackage ../development/libraries/physics/thepeg { };
yoda = callPackage ../development/libraries/physics/yoda { };
yoda = callPackage ../development/libraries/physics/yoda {
root = null;
};
yoda-with-root = lowPrio (callPackage ../development/libraries/physics/yoda { });
### MISC