ticker/shell.nix

16 lines
225 B
Nix
Raw Normal View History

2019-10-07 00:33:44 +02:00
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
stdenv.mkDerivation {
name = "env";
buildInputs = [
2019-10-10 04:09:14 +02:00
pkg-config openssl postgresql.lib
2019-10-07 00:33:44 +02:00
cargo rustc
];
shellHook = ''
echo "Run 'cargo build --release'"
'';
}