nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 17 lines 327 B view raw
1with import ../../../. { }; 2 3rustPlatform.buildRustPackage { 4 name = "convert-to-import-cargo-lock"; 5 6 src = lib.cleanSourceWith { 7 src = ./.; 8 filter = 9 name: type: 10 let 11 name' = baseNameOf name; 12 in 13 name' != "default.nix" && name' != "target"; 14 }; 15 16 cargoLock.lockFile = ./Cargo.lock; 17}