diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-07-25 18:10:34 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-07-26 18:27:52 +0200 |
commit | fcb04843f7619d767c3c865e4795fb3468653e28 (patch) | |
tree | 29e4741955338aaf8cd32ee4175ae42194b2803c /nix/common.nix | |
parent | 5fb858424793de8dc35dce8deaa8981a384e064f (diff) | |
download | garage-fcb04843f7619d767c3c865e4795fb3468653e28.tar.gz garage-fcb04843f7619d767c3c865e4795fb3468653e28.zip |
Run clippy in nix, leveraging nix caching ability
Diffstat (limited to 'nix/common.nix')
-rw-r--r-- | nix/common.nix | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/nix/common.nix b/nix/common.nix index 5cd15c8a..8396a6de 100644 --- a/nix/common.nix +++ b/nix/common.nix @@ -4,18 +4,16 @@ rec { */ pkgsSrc = fetchTarball { # As of 2021-10-04 - url ="https://github.com/NixOS/nixpkgs/archive/b27d18a412b071f5d7991d1648cfe78ee7afe68a.tar.gz"; + url = "https://github.com/NixOS/nixpkgs/archive/b27d18a412b071f5d7991d1648cfe78ee7afe68a.tar.gz"; sha256 = "1xy9zpypqfxs5gcq5dcla4bfkhxmh5nzn9dyqkr03lqycm9wg5cr"; }; cargo2nixSrc = fetchGit { # As of 2022-03-17 url = "https://github.com/superboum/cargo2nix"; - ref = "main"; - rev = "bcbf3ba99e9e01a61eb83a24624419c2dd9dec64"; + ref = "dedup_propagate"; + rev = "486675c67249e735dd7eb68e1b9feac9db102be7"; }; - - /* * Shared objects */ |