mirror of
https://git.dirksys.ovh/dirk/bankserver.git
synced 2025-12-20 02:59:20 +01:00
13 lines
182 B
Nix
13 lines
182 B
Nix
{
|
|
rustPlatform,
|
|
rev ? "dirty",
|
|
}:
|
|
rustPlatform.buildRustPackage {
|
|
pname = "bankingserver";
|
|
version = "unstable-${rev}";
|
|
|
|
src = ./.;
|
|
|
|
cargoLock.lockFile = ./Cargo.lock;
|
|
}
|