lol

bant: 0.1.7 fix changed hash of fixed derivation. (#350381)

authored by

Fabián Heredia Montiel and committed by
GitHub
18536bf0 f5876b31

+16 -7
+16 -7
pkgs/by-name/ba/bant/package.nix
··· 15 15 rev = "40bc9ad53e5a59d596935839e7c072679e706266"; 16 16 hash = "sha256-CL0YMQd1ck6/dlvJCLxt9jYyqDuk+iAWfdBOMj864u8="; 17 17 }; 18 - in buildBazelPackage rec { 18 + in 19 + buildBazelPackage rec { 19 20 pname = "bant"; 20 21 version = "0.1.7"; 21 22 ··· 26 27 hash = "sha256-QbxPosjlrpxbz6gQKUKccF2Gu/i5xvqh2gwfABYE8kE="; 27 28 }; 28 29 29 - bazelFlags = ["--registry" "file://${registry}"]; 30 + bazelFlags = [ 31 + "--registry" 32 + "file://${registry}" 33 + ]; 30 34 31 35 postPatch = '' 32 36 patchShebangs scripts/create-workspace-status.sh 33 37 ''; 34 38 35 39 fetchAttrs = { 36 - sha256 = { 37 - aarch64-linux = "sha256-09RL0tj6xsGEmuv11V81eAtqLc9nAaE8Il3d6ueS0UQ="; 38 - x86_64-linux = "sha256-6mlaJ/kT14vKvlJjxqBK/lESjjxbcYxApi7+eiiI37M="; 39 - }.${system} or (throw "No hash for system: ${system}"); 40 + hash = 41 + { 42 + aarch64-linux = "sha256-LNca4h4yceSgve9GYUoXqlODKPjLAa71kh1BWXqRYtk="; 43 + x86_64-linux = "sha256-bRFIfaVbsU2WroXR/i0E7J4rWeaNEoum93r8qOMXXvc="; 44 + } 45 + .${system} or (throw "No hash for system: ${system}"); 40 46 }; 41 47 42 48 nativeBuildInputs = [ ··· 58 64 description = "Bazel/Build Analysis and Navigation Tool"; 59 65 homepage = "http://bant.build/"; 60 66 license = licenses.gpl2Only; 61 - maintainers = with maintainers; [ hzeller lromor ]; 67 + maintainers = with maintainers; [ 68 + hzeller 69 + lromor 70 + ]; 62 71 platforms = platforms.linux; 63 72 }; 64 73 }