summaryrefslogtreecommitdiff
path: root/shell.nix
blob: 557794433fbe636827dfe06d5013ea23b6c02c9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs ? import <nixpkgs> {} }:

pkgs.stdenv.mkDerivation {
  name = "pjournal";
  buildInputs = with pkgs; [
    rustup
    clang
    openssl
    pkgconfig
    postgresql
  ];
}