Compare commits

...

2 Commits

1 changed files with 2 additions and 2 deletions

View File

@ -8,9 +8,9 @@
utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
cargoToml = with builtins; (fromTOML (readFile ./dexios/Cargo.toml));
cargoToml = with builtins; (fromTOML (readFile ./Cargo.toml));
in
{
rec {
packages.default = pkgs.rustPlatform.buildRustPackage {
inherit (cargoToml.package) name version;
src = nixpkgs.lib.cleanSource ./.;