Price Hiller
02334f5601
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m14s
15 lines
327 B
Nix
15 lines
327 B
Nix
{ rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "bob";
|
|
version = "2.9.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MordechaiHadad";
|
|
repo = "bob";
|
|
rev = "v${version}";
|
|
hash = "sha256-jVRxvhUENyucRHN4TGV9xsWOs7mfPJCV90Lk/hD1xFE=";
|
|
};
|
|
cargoLock.lockFile = "${src}/Cargo.lock";
|
|
}
|