summary refs log tree commit diff
path: root/pkgs/development/libraries/physics/hoppet/default.nix
blob: 55714afbdce95946a60d743de9023d2abc9eb00a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 ];
  };
}