fix packages

This commit is contained in:
Max Känner 2024-09-15 21:58:13 +02:00
parent f69c5d19f5
commit cccea58966

View File

@ -12,8 +12,10 @@
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
in { in {
packages.${system}.rust = import ./rust.nix {inherit pkgs;}; packages.${system} = {
packages.${system}.clang = import ./clang.nix {inherit pkgs;}; rust = import ./rust.nix {inherit pkgs;};
packages.${system}.default = self.packages.${system}.rust; clang = import ./clang.nix {inherit pkgs;};
default = self.packages.${system}.rust;
};
}; };
} }