lol

fastnlo_toolkit: 2.5.0pre-2823 -> 2.5.0-2826

Since this comes with pre-generated files, this fixes the python
extension.

+6 -21
+6 -21
pkgs/development/libraries/physics/fastnlo_toolkit/default.nix
··· 1 1 { lib 2 2 , stdenv 3 - , fetchFromGitLab 4 - , autoreconfHook 3 + , fetchurl 5 4 , boost 6 5 , gfortran 7 6 , lhapdf ··· 14 13 , withPython ? false 15 14 }: 16 15 17 - let 18 - tag = "2823"; 19 - in 20 - 21 16 stdenv.mkDerivation rec { 22 17 pname = "fastnlo_toolkit"; 23 - version = "2.5.0pre-${tag}"; 18 + version = "2.5.0-2826"; 24 19 25 - src = fetchFromGitLab { 26 - domain = "gitlab.etp.kit.edu"; 27 - owner = "qcd-public"; 28 - repo = "fastNLO"; 29 - rev = tag; 30 - hash = "sha256-FEKnEnK90tT4BJJ6MLva9lCl3aYzO1YGdx/8Ol2vM7M="; 31 - } + /v2.5/toolkit; 32 - 33 - postPatch = '' 34 - # remove duplicate macro, to fix for autoconf 2.70 35 - sed -e '0,/AC_CONFIG_MACRO_DIR\([m4]\)/{/AC_CONFIG_MACRO_DIR/d}' -i configure.ac 36 - ''; 37 - 38 - nativeBuildInputs = [ autoreconfHook ]; 20 + src = fetchurl { 21 + url = "https://fastnlo.hepforge.org/code/v25/fastnlo_toolkit-${version}.tar.gz"; 22 + sha256 = "sha256-7aIMYCOkHC/17CHYiEfrxvtSJxTDivrS7BQ32cGiEy0="; 23 + }; 39 24 40 25 buildInputs = [ 41 26 boost