Skip to content

Commit 3e45072

Browse files
authored
fmt: 11.0.1 -> 11.0.2, change sha256 -> hash (NixOS#350061)
2 parents db2a0ea + 585e854 commit 3e45072

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

pkgs/development/libraries/fmt/default.nix

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ let
1616
generic =
1717
{
1818
version,
19-
sha256,
19+
hash,
2020
patches ? [ ],
2121
}:
2222
stdenv.mkDerivation {
@@ -32,7 +32,7 @@ let
3232
owner = "fmtlib";
3333
repo = "fmt";
3434
rev = version;
35-
inherit sha256;
35+
inherit hash;
3636
};
3737

3838
inherit patches;
@@ -70,21 +70,21 @@ in
7070
{
7171
fmt_8 = generic {
7272
version = "8.1.1";
73-
sha256 = "sha256-leb2800CwdZMJRWF5b1Y9ocK0jXpOX/nwo95icDf308=";
73+
hash = "sha256-leb2800CwdZMJRWF5b1Y9ocK0jXpOX/nwo95icDf308=";
7474
};
7575

7676
fmt_9 = generic {
7777
version = "9.1.0";
78-
sha256 = "sha256-rP6ymyRc7LnKxUXwPpzhHOQvpJkpnRFOt2ctvUNlYI0=";
78+
hash = "sha256-rP6ymyRc7LnKxUXwPpzhHOQvpJkpnRFOt2ctvUNlYI0=";
7979
};
8080

8181
fmt_10 = generic {
8282
version = "10.2.1";
83-
sha256 = "sha256-pEltGLAHLZ3xypD/Ur4dWPWJ9BGVXwqQyKcDWVmC3co=";
83+
hash = "sha256-pEltGLAHLZ3xypD/Ur4dWPWJ9BGVXwqQyKcDWVmC3co=";
8484
};
8585

8686
fmt_11 = generic {
87-
version = "11.0.1";
88-
sha256 = "sha256-EPidbZxCvysrL64AzbpJDowiNxqy4ii+qwSWAFwf/Ps=";
87+
version = "11.0.2";
88+
hash = "sha256-IKNt4xUoVi750zBti5iJJcCk3zivTt7nU12RIf8pM+0=";
8989
};
9090
}

0 commit comments

Comments
 (0)