mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 05:13:04 +00:00
hoppet: init at 1.2.0
This commit is contained in:
parent
d123b30ed1
commit
af476db8cb
23
pkgs/development/libraries/physics/hoppet/default.nix
Normal file
23
pkgs/development/libraries/physics/hoppet/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, fetchurl, gfortran }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "hoppet-${version}";
|
||||||
|
version = "1.2.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://hoppet.hepforge.org/downloads/${name}.tgz";
|
||||||
|
sha256 = "0j7437rh4xxbfzmkjr22ry34xm266gijzj6mvrq193fcsfzipzdz";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ gfortran ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Higher Order Perturbative Parton Evolution Toolkit";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
homepage = https://hoppet.hepforge.org;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ veprbl ];
|
||||||
|
};
|
||||||
|
}
|
@ -21401,6 +21401,8 @@ with pkgs;
|
|||||||
|
|
||||||
### SCIENCE / PHYSICS
|
### SCIENCE / PHYSICS
|
||||||
|
|
||||||
|
hoppet = callPackage ../development/libraries/physics/hoppet { };
|
||||||
|
|
||||||
fastjet = callPackage ../development/libraries/physics/fastjet { };
|
fastjet = callPackage ../development/libraries/physics/fastjet { };
|
||||||
|
|
||||||
fastnlo = callPackage ../development/libraries/physics/fastnlo { };
|
fastnlo = callPackage ../development/libraries/physics/fastnlo { };
|
||||||
|
Loading…
Reference in New Issue
Block a user