mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
yoda: init at 1.6.3
This commit is contained in:
parent
75ed9ac975
commit
571d1111fe
30
pkgs/development/libraries/physics/yoda/default.nix
Normal file
30
pkgs/development/libraries/physics/yoda/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv, fetchurl, python2Packages, makeWrapper }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "yoda-${version}";
|
||||||
|
version = "1.6.5";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://www.hepforge.org/archive/yoda/YODA-${version}.tar.bz2";
|
||||||
|
sha256 = "1i8lmj63cd3qnxl9k2cb1abap2pirhx7ffinm834wbpy9iszwxql";
|
||||||
|
};
|
||||||
|
|
||||||
|
pythonPath = []; # python wrapper support
|
||||||
|
|
||||||
|
buildInputs = with python2Packages; [ python numpy matplotlib makeWrapper ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
for prog in "$out"/bin/*; do
|
||||||
|
wrapProgram "$prog" --set PYTHONPATH $PYTHONPATH:$(toPythonPath "$out")
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Provides small set of data analysis (specifically histogramming) classes";
|
||||||
|
license = stdenv.lib.licenses.gpl2;
|
||||||
|
homepage = https://yoda.hepforge.org;
|
||||||
|
platforms = stdenv.lib.platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
@ -16719,6 +16719,8 @@ in
|
|||||||
|
|
||||||
hepmc = callPackage ../development/libraries/physics/hepmc { };
|
hepmc = callPackage ../development/libraries/physics/hepmc { };
|
||||||
|
|
||||||
|
yoda = callPackage ../development/libraries/physics/yoda { };
|
||||||
|
|
||||||
### MISC
|
### MISC
|
||||||
|
|
||||||
antimicro = qt5.callPackage ../tools/misc/antimicro { };
|
antimicro = qt5.callPackage ../tools/misc/antimicro { };
|
||||||
|
Loading…
Reference in New Issue
Block a user