ticker/default.nix

14 lines
245 B
Nix

{ pkgs ? import <nixpkgs> {} }:
with pkgs;
rustPlatform.buildRustPackage {
name = "ticker";
src = ./.;
buildInputs = [
pkg-config openssl
cargo rustc
];
cargoSha256 = "008404j5k9qgz5xcfg5d4q97lzhiqx5ljmi7jh1kmp9286669ix7";
}