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
];
2019-10-11 23:38:21 +02:00
cargoSha256 = "0igr8k46yl5a89zjymp6914faawcvqza08h6l9pcplpikhbvls42";
2019-10-07 00:33:44 +02:00
}