Skip to content

Commit

Permalink
fix: updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodylow committed Apr 7, 2024
1 parent b176625 commit 7f5aefa
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 16 deletions.
5 changes: 1 addition & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[workspace]
members = [
"multimint",
"fedimint-clientd",
]
members = ["multimint", "fedimint-clientd"]
resolver = "2"
23 changes: 11 additions & 12 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
rustSrc = flakeboxLib.filterSubPaths {
root = builtins.path {
name = "fedimint-clientd";
path = ./.;
path = ./fedimint-clientd;
};
paths = [ "Cargo.toml" "Cargo.lock" ".cargo" "src" ];
};
Expand Down Expand Up @@ -75,17 +75,16 @@
in {
legacyPackages = outputs;
packages = { default = outputs.fedimint-clientd; };
devShells = fmLib.devShells // {
default = fmLib.devShells.default.overrideAttrs (prev: {
nativeBuildInputs = [
pkgs.mprocs
pkgs.go
pkgs.bun
fedimint.packages.${system}.devimint
fedimint.packages.${system}.gateway-pkgs
fedimint.packages.${system}.fedimint-pkgs
] ++ prev.nativeBuildInputs;
});
devShells = flakeboxLib.mkShells {
packages = [ ];
nativeBuildInputs = [
pkgs.mprocs
pkgs.go
pkgs.bun
fedimint.packages.${system}.devimint
fedimint.packages.${system}.gateway-pkgs
fedimint.packages.${system}.fedimint-pkgs
];
};
});
}

0 comments on commit 7f5aefa

Please sign in to comment.