Skip to content

Commit f3f39b7

Browse files
PoisonPhangaeryz
authored andcommitted
chore: replace vendorSha256 with vendorHash
1 parent 05394f1 commit f3f39b7

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

faucet/faucet.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
let
44
faucet = pkgs.buildGoModule {
55
name = "faucet";
6-
vendorSha256 = "sha256-LDu9GSgMsCHTk5K7hsEhLg36SatUpgQZrOdEvuPSM84=";
6+
vendorHash = "sha256-LDu9GSgMsCHTk5K7hsEhLg36SatUpgQZrOdEvuPSM84=";
77
meta.mainProgram = "cosmos-faucet";
88
version = "2.0.0";
99
src = pkgs.fetchFromGitHub {

galoisd/galoisd.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
galoisd = goPkgs.buildGoModule ({
66
name = "galoisd";
77
src = ./.;
8-
vendorSha256 = null;
8+
vendorHash = null;
99
doCheck = false;
1010
meta = {
1111
mainProgram = "galoisd";

uniond/proto.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
sha256 = "sha256-jJWqkMEBAJq50KaXccVpmgx/hwTdKgTtNkz8/xYO+Dc=";
1919
};
2020

21-
vendorSha256 = "sha256-jVOb2uHjPley+K41pV+iMPNx67jtb75Rb/ENhw+ZMoM=";
21+
vendorHash = "sha256-jVOb2uHjPley+K41pV+iMPNx67jtb75Rb/ENhw+ZMoM=";
2222
};
2323

2424
cosmos-proto = pkgs.buildGoModule {
@@ -32,7 +32,7 @@
3232
};
3333
doCheck = false;
3434

35-
vendorSha256 = "sha256-7kDz0RAon2L/3NTHIxya8nWMyN28G9rAfqUu+lbkea4=";
35+
vendorHash = "sha256-7kDz0RAon2L/3NTHIxya8nWMyN28G9rAfqUu+lbkea4=";
3636
};
3737

3838
gogoproto = pkgs.buildGoModule {
@@ -47,7 +47,7 @@
4747
nativeBuildInputs = with pkgs; [ protobuf ];
4848
doCheck = false;
4949

50-
vendorSha256 = "sha256-nfeqVsPMQz7EL+qWxFzRukCE3YqXErhS9urRaJo44Fg=";
50+
vendorHash = "sha256-nfeqVsPMQz7EL+qWxFzRukCE3YqXErhS9urRaJo44Fg=";
5151
};
5252
generate-uniond-proto = pkgs.stdenv.mkDerivation {
5353
name = "generate-uniond-proto";

uniond/uniond.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
(nix-filter.matchExt "md")
6262
];
6363
};
64-
vendorSha256 = null;
64+
vendorHash = null;
6565
doCheck = true;
6666
meta.mainProgram = "uniond";
6767
} // (
@@ -116,7 +116,7 @@
116116
rev = "a1ea6c775ac230bb1a1428bb96e4306044aa944b";
117117
sha256 = "sha256-7AdE5qps4OMjaubt9Af6ATaqrV3n73ZuI7zTz7Kgm6w=";
118118
};
119-
vendorSha256 = null;
119+
vendorHash = null;
120120
};
121121

122122
# must be run from a directory with vendor/

0 commit comments

Comments
 (0)