python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / physics / hoppet / default.nix
blobaf90192878d7fcbc35ad5f60ffe7808bb94de173
1 { lib, stdenv, fetchurl, gfortran, perl }:
3 stdenv.mkDerivation rec {
4   pname = "hoppet";
5   version = "1.2.0";
7   src = fetchurl {
8     url = "https://hoppet.hepforge.org/downloads/${pname}-${version}.tgz";
9     sha256 = "0j7437rh4xxbfzmkjr22ry34xm266gijzj6mvrq193fcsfzipzdz";
10   };
12   nativeBuildInputs = [ perl gfortran  ];
14   enableParallelBuilding = true;
16   preConfigure = ''
17     patchShebangs .
18   '';
20   meta = with lib; {
21     description = "Higher Order Perturbative Parton Evolution Toolkit";
22     license     = licenses.gpl2;
23     homepage    = "https://hoppet.hepforge.org";
24     platforms   = platforms.unix;
25     maintainers = with maintainers; [ veprbl ];
26   };