yoda: 1.9.8 -> 1.9.9 (#273260)

authored by Dmitry Kalinkin and committed by GitHub 8f47b402 729bd749

+2 -12
+2 -12
pkgs/development/libraries/physics/yoda/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchurl 4 - , fetchpatch 5 4 , python 6 5 , root 7 6 , makeWrapper ··· 11 10 12 11 stdenv.mkDerivation rec { 13 12 pname = "yoda"; 14 - version = "1.9.8"; 13 + version = "1.9.9"; 15 14 16 15 src = fetchurl { 17 16 url = "https://www.hepforge.org/archive/yoda/YODA-${version}.tar.bz2"; 18 - hash = "sha256-e8MGJGirulCv8+y4sizmdxlgNgCYkGiO9FM6qn+S5uQ="; 17 + hash = "sha256-68rVU2mhztzuOi3gWUB8hRZSukRJURP1wJ2MLlf1Fqo="; 19 18 }; 20 - 21 - patches = [ 22 - # A bugfix https://gitlab.com/hepcedar/yoda/-/merge_requests/116 23 - (fetchpatch { 24 - url = "https://gitlab.com/hepcedar/yoda/-/commit/ba1275033522c66bc473dfeffae1a7971e985611.diff"; 25 - hash = "sha256-/8UJuypiQzywarE+o3BEMtqM+f+YzkHylugi+xTJf+w="; 26 - excludes = [ "ChangeLog" ]; 27 - }) 28 - ]; 29 19 30 20 nativeBuildInputs = with python.pkgs; [ 31 21 cython