Add cargo-fuzz

This commit is contained in:
Bad 2022-04-06 17:12:28 +02:00
parent 3daa1c3299
commit 47092aea3c
3 changed files with 14 additions and 12 deletions

View file

@ -159,11 +159,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1649126626, "lastModified": 1649221292,
"narHash": "sha256-0L4jQ4tgG0k9/74OE7XJvylS84pocY2kGo4z6s/+1qw=", "narHash": "sha256-HIvIL/rcMeKzS18MKj9XpN+6qiHS94VtdqMRTvdz7MQ=",
"owner": "divnix", "owner": "divnix",
"repo": "digga", "repo": "digga",
"rev": "b5fac9c7fc6fe627d2b15f1a62939355379ef581", "rev": "e2bb8ea28c5bbc7bb46ac91df3ac846ce9a3964c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -197,11 +197,11 @@
"rust-analyzer-src": "rust-analyzer-src_2" "rust-analyzer-src": "rust-analyzer-src_2"
}, },
"locked": { "locked": {
"lastModified": 1649140024, "lastModified": 1649226351,
"narHash": "sha256-SZLyRjOqmCevSFlxLvV6Zy/Hzu4AfYmZQqerLBNJa8A=", "narHash": "sha256-5fQwF5kYpPC7w0SOfdbE9Z7o5/i/dyo1BxMLVCA2h3E=",
"owner": "nix-community", "owner": "nix-community",
"repo": "fenix", "repo": "fenix",
"rev": "2af3ac5c6ee0e353e055241e21ca4710714a1394", "rev": "c7e184561fe843abb861cd7d22c23066987078e2",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -458,11 +458,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1649183648, "lastModified": 1649247666,
"narHash": "sha256-RJzgcgOvyrxcafvIrtpShugvlr2rOT9orYDzgRTVGDA=", "narHash": "sha256-A9nLJLwoyxK5+D3kzfQihrWXvzs/21IaGL6RJPTReYc=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "b4729bad3d1c1c78dbd47634a1efba388c89dbbb", "rev": "93a139dac3cadd2949c62966e54f54f4ec1f74fa",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -580,11 +580,11 @@
"rust-analyzer-src_2": { "rust-analyzer-src_2": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1649102917, "lastModified": 1649178056,
"narHash": "sha256-xBjxve7+0sIYlxlGLHjJV0DNmNC6GFlvLT+ura1cht8=", "narHash": "sha256-dcf7vKAkpdNvjd243LTGkUD6zLaLPN5deM2WTysG/Zs=",
"owner": "rust-analyzer", "owner": "rust-analyzer",
"repo": "rust-analyzer", "repo": "rust-analyzer",
"rev": "5a6918f1c4e9d4f0c6a655e6283470f64edd64cf", "rev": "2366d8e05f5f3585f95058fa7427cbde079914ed",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -23,6 +23,7 @@ in
neovim neovim
polymc polymc
cargo-crev cargo-crev
cargo-fuzz
neovim-unwrapped; neovim-unwrapped;
latest = latest; latest = latest;

View file

@ -6,6 +6,7 @@
cargo-edit cargo-edit
cargo-crev cargo-crev
cargo-watch cargo-watch
cargo-fuzz
]; ];
environment.variables.RUST_SRC_PATH = "${pkgs.fenix.latest.rust-src}/lib/rustlib/src/rust/library/"; environment.variables.RUST_SRC_PATH = "${pkgs.fenix.latest.rust-src}/lib/rustlib/src/rust/library/";
} }