zwote_sonne/derivation.nix

18 lines
205 B
Nix
Raw Normal View History

2024-08-22 12:48:30 +02:00
{
lib,
pkgs,
rustPlatform,
name,
}:
(rustPlatform.buildRustPackage {
inherit name;
nativeBuildInputs = with pkgs; [
];
src = lib.cleanSource ./.;
cargoLock = {
lockFile = ./Cargo.lock;
};
})