bandwhich: fix build by manually updating `time`

authored by Philipp Mildenberger and committed by Alyssa Ross fd61e577 8f6caacb

+18 -6
+14 -6
pkgs/tools/networking/bandwhich/Cargo.lock
··· 1075 ] 1076 1077 [[package]] 1078 name = "num-derive" 1079 version = "0.3.3" 1080 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1728 1729 [[package]] 1730 name = "simplelog" 1731 - version = "0.12.1" 1732 source = "registry+https://github.com/rust-lang/crates.io-index" 1733 - checksum = "acee08041c5de3d5048c8b3f6f13fafb3026b24ba43c6a695a0c76179b844369" 1734 dependencies = [ 1735 "log", 1736 "termcolor", ··· 1887 1888 [[package]] 1889 name = "time" 1890 - version = "0.3.31" 1891 source = "registry+https://github.com/rust-lang/crates.io-index" 1892 - checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e" 1893 dependencies = [ 1894 "deranged", 1895 "itoa", 1896 "libc", 1897 "num_threads", 1898 "powerfmt", 1899 "serde", ··· 1909 1910 [[package]] 1911 name = "time-macros" 1912 - version = "0.2.16" 1913 source = "registry+https://github.com/rust-lang/crates.io-index" 1914 - checksum = "26197e33420244aeb70c3e8c78376ca46571bc4e701e4791c2cd9f57dcb3a43f" 1915 dependencies = [ 1916 "time-core", 1917 ] 1918
··· 1075 ] 1076 1077 [[package]] 1078 + name = "num-conv" 1079 + version = "0.1.0" 1080 + source = "registry+https://github.com/rust-lang/crates.io-index" 1081 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1082 + 1083 + [[package]] 1084 name = "num-derive" 1085 version = "0.3.3" 1086 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1734 1735 [[package]] 1736 name = "simplelog" 1737 + version = "0.12.2" 1738 source = "registry+https://github.com/rust-lang/crates.io-index" 1739 + checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0" 1740 dependencies = [ 1741 "log", 1742 "termcolor", ··· 1893 1894 [[package]] 1895 name = "time" 1896 + version = "0.3.36" 1897 source = "registry+https://github.com/rust-lang/crates.io-index" 1898 + checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 1899 dependencies = [ 1900 "deranged", 1901 "itoa", 1902 "libc", 1903 + "num-conv", 1904 "num_threads", 1905 "powerfmt", 1906 "serde", ··· 1916 1917 [[package]] 1918 name = "time-macros" 1919 + version = "0.2.18" 1920 source = "registry+https://github.com/rust-lang/crates.io-index" 1921 + checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 1922 dependencies = [ 1923 + "num-conv", 1924 "time-core", 1925 ] 1926
+4
pkgs/tools/networking/bandwhich/default.nix
··· 30 # 10 passed; 47 failed https://hydra.nixos.org/build/148943783/nixlog/1 31 doCheck = !stdenv.isDarwin; 32 33 preConfigure = '' 34 export BANDWHICH_GEN_DIR=_shell-files 35 mkdir -p $BANDWHICH_GEN_DIR
··· 30 # 10 passed; 47 failed https://hydra.nixos.org/build/148943783/nixlog/1 31 doCheck = !stdenv.isDarwin; 32 33 + postPatch = '' 34 + ln --force -s ${./Cargo.lock} Cargo.lock 35 + ''; 36 + 37 preConfigure = '' 38 export BANDWHICH_GEN_DIR=_shell-files 39 mkdir -p $BANDWHICH_GEN_DIR