We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb271d4 commit 3cc0f24Copy full SHA for 3cc0f24
overlays/default.nix
@@ -14,6 +14,25 @@ in
14
inherit (final.vscode-utils) buildVscodeMarketplaceExtension;
15
in
16
{
17
+ typos = prev.typos.overrideAttrs (_old: rec {
18
+ pname = "typos";
19
+ version = "1.38.1";
20
+
21
+ src = final.fetchFromGitHub {
22
+ owner = "crate-ci";
23
+ repo = "typos";
24
+ tag = "v${version}";
25
+ hash = "sha256-xr3k3wx9EWKm00kt1GxE31Mw5wa3N3VJJCKaUbQa4ic=";
26
+ };
27
28
+ doCheck = false;
29
30
+ cargoDeps = final.rustPlatform.fetchCargoVendor {
31
+ inherit src;
32
+ hash = "sha256-2XgnCXYqBvx7LRWaPt4iXznIXIEzYBlWMXbwEVZyGA8=";
33
34
35
+ });
36
vscode-extensions = recursiveUpdate prev.vscode-extensions
37
38
ionide.ionide-fsharp = buildVscodeMarketplaceExtension {
0 commit comments