tnetplug/nix/adc2tcp.nix

14 lines
220 B
Nix
Raw Normal View History

2019-03-07 23:27:33 +08:00
{ stdenv, rustPlatform }:
with rustPlatform;
buildRustPackage rec {
name = "adc2tcp";
version = "0.0.0";
src = ../.;
cargoSha256 = "0q3cn3jzgmrqiymisxymn19vbnnpsj7if052w5zh25x9ikin6lpl";
doCheck = false;
}