nextpnr: 2021.08.16 -> 2021.09.27

Signed-off-by: Austin Seipp <aseipp@pobox.com>

+5 -5
+5 -5
pkgs/development/compilers/nextpnr/default.nix
··· 14 14 in 15 15 stdenv.mkDerivation rec { 16 16 pname = "nextpnr"; 17 - version = "2021.08.16"; 17 + version = "2021.09.27"; 18 18 19 19 srcs = [ 20 20 (fetchFromGitHub { 21 21 owner = "YosysHQ"; 22 22 repo = "nextpnr"; 23 - rev = "b37d133c43c45862bd5c550b5d7fffaa8c49b968"; 24 - sha256 = "0qc9d8cay2j5ggn0mgjq484vv7a14na16s9dmp7bqz7r9cn4b98n"; 23 + rev = "9d8d3bdbc48133ff7758c9c5293e5904bc6e5ba7"; 24 + sha256 = "sha256-5Axo8qX2+ATqQ170QqfhRwYfCRQLCKBW1kc89x9XljE="; 25 25 name = "nextpnr"; 26 26 }) 27 27 (fetchFromGitHub { 28 28 owner = "YosysHQ"; 29 29 repo = "nextpnr-tests"; 30 30 rev = "ccc61e5ec7cc04410462ec3196ad467354787afb"; 31 - sha256 = "09a0bhrphr3rsppryrfak4rhziyj8k3s17kgb0vgm0abjiz0jgam"; 31 + sha256 = "sha256-VT0JfpRLgfo2WG+eoMdE0scPM5nKZZ/v1XlkeDNcQCU="; 32 32 name = "nextpnr-tests"; 33 33 }) 34 34 ]; ··· 60 60 61 61 patchPhase = with builtins; '' 62 62 # use PyPy for icestorm if enabled 63 - substituteInPlace ./ice40/family.cmake \ 63 + substituteInPlace ./ice40/CMakeLists.txt \ 64 64 --replace ''\'''${PYTHON_EXECUTABLE}' '${icestorm.pythonInterp}' 65 65 ''; 66 66