zwote_sonne/derivation.nix
2024-08-22 12:48:30 +02:00

17 lines
205 B
Nix

{
lib,
pkgs,
rustPlatform,
name,
}:
(rustPlatform.buildRustPackage {
inherit name;
nativeBuildInputs = with pkgs; [
];
src = lib.cleanSource ./.;
cargoLock = {
lockFile = ./Cargo.lock;
};
})