Skip to content

Commit

Permalink
fix nix check
Browse files Browse the repository at this point in the history
  • Loading branch information
kayhhh committed Dec 18, 2023
1 parent 4bbd101 commit 2d27269
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ let
LD_LIBRARY_PATH = lib.makeLibraryPath build_inputs;
};
in {
dwn-server =
rustPlatform.buildRustPackage (common // { pname = "dwn-server"; });
dwn = rustPlatform.buildRustPackage (common // { pname = "dwn"; });
dwn-server = rustPlatform.buildRustPackage (common // {
pname = "dwn-server";
checkPhase = "";
});
dwn = rustPlatform.buildRustPackage (common // {
pname = "dwn";
checkPhase = "";
});
}

0 comments on commit 2d27269

Please sign in to comment.