ticker/default.nix

14 lines
260 B
Nix
Raw Normal View History

2019-10-07 00:33:44 +02:00
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
rustPlatform.buildRustPackage {
name = "ticker";
src = ./.;
buildInputs = [
2019-10-10 04:09:14 +02:00
pkg-config openssl postgresql.lib
2019-10-07 00:33:44 +02:00
cargo rustc
];
cargoSha256 = "008404j5k9qgz5xcfg5d4q97lzhiqx5ljmi7jh1kmp9286669ix7";
}