diff options
| author | seth <getchoo@tuta.io> | 2024-09-30 19:13:55 -0400 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-10-05 12:09:24 -0700 |
| commit | b3d4d4eacc88282a5a0f5b5670904e9434ba1a2e (patch) | |
| tree | 76a38cf18f1f8e62c83cfbcb09aec41ccdeab5c3 /flake.lock | |
| parent | a835bdc940885d73ee1b633cf95562fd8c3c5360 (diff) | |
| download | niri-b3d4d4eacc88282a5a0f5b5670904e9434ba1a2e.tar.gz niri-b3d4d4eacc88282a5a0f5b5670904e9434ba1a2e.tar.bz2 niri-b3d4d4eacc88282a5a0f5b5670904e9434ba1a2e.zip | |
flake: use rust-overlay in dev shell
This allows `niri-visual-tests` to still be built and run in the dev
shell where it's necessary, as well as brings back the nightly `rustfmt`
used by the project
We can't use `fenix` again though as it doesn't wrap `ld` like nixpkgs
and rust-overlay do; without it, the way we link `dlopen()`'d libraries
breaks
Diffstat (limited to 'flake.lock')
| -rw-r--r-- | flake.lock | 23 |
1 files changed, 22 insertions, 1 deletions
@@ -34,7 +34,28 @@ "root": { "inputs": { "nix-filter": "nix-filter", - "nixpkgs": "nixpkgs" + "nixpkgs": "nixpkgs", + "rust-overlay": "rust-overlay" + } + }, + "rust-overlay": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1727663505, + "narHash": "sha256-83j/GrHsx8GFUcQofKh+PRPz6pz8sxAsZyT/HCNdey8=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "c2099c6c7599ea1980151b8b6247a8f93e1806ee", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } } }, |
