forked from M-Labs/thermostat
14 lines
220 B
Nix
14 lines
220 B
Nix
|
{ stdenv, rustPlatform }:
|
||
|
|
||
|
with rustPlatform;
|
||
|
|
||
|
buildRustPackage rec {
|
||
|
name = "adc2tcp";
|
||
|
version = "0.0.0";
|
||
|
|
||
|
src = ../.;
|
||
|
cargoSha256 = "0q3cn3jzgmrqiymisxymn19vbnnpsj7if052w5zh25x9ikin6lpl";
|
||
|
|
||
|
doCheck = false;
|
||
|
}
|