mirror of
https://gitlab.cern.ch/wotsubo/endcap-sl-software-ri-generator.git
synced 2025-04-25 06:06:00 +09:00
11 lines
249 B
Nix
11 lines
249 B
Nix
{ rustPlatform }:
|
|
# https://nixos.org/manual/nixpkgs/stable/#rust
|
|
rustPlatform.buildRustPackage {
|
|
pname = "endcap-sl-software-ri-generator";
|
|
version = "0.3.0";
|
|
|
|
src = ../.;
|
|
cargoLock.lockFile = ../Cargo.lock;
|
|
|
|
buildFeatures = [ "bin" ];
|
|
}
|