Skip to content

Commit d500520

Browse files
committed
Fix flake.nix
1 parent 4ff6c34 commit d500520

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,21 @@
1515
flake-utils.lib.eachDefaultSystem (system:
1616
let
1717
pkgs = nixpkgs.legacyPackages.${system};
18-
ateam = import ./default.nix { inherit pkgs; };
18+
ateam = pkgs.callPackage ./default.nix { };
1919
in {
2020
packages.default = ateam;
2121

2222
devShell = pkgs.mkShell {
2323
buildInputs = with pkgs;
2424
[
2525
# rustup
26-
# cargo
2726
# rustc
2827
# libiconv
2928
# pkg-config
3029
# openssl
3130
# rust-analyzer <-- This does not work. You need to run `rustup component add rust-analyzer`
3231
# tools for ./maintenance.sh
32+
cargo
3333
cargo-udeps
3434
cargo-outdated
3535
cargo-audit

0 commit comments

Comments
 (0)