summaryrefslogtreecommitdiff
path: root/default.nix
blob: 72e9fed2a8b4f45a2b0c873761587cc6ca995e60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
with import <nixpkgs> {};

with rustPlatform;

buildRustPackage rec {
  name = "systemhttpd-${version}";
  version = "0.1.0";
  src = ./.;
  depsSha256 = "1zx5s5g2d0q34c4g4prb8wzl0ziwsgwlyqqn28ccm5jlb6ig33xn";
  buildInputs = [ openssl sqlite ];
  nativeBuildInputs = [ pkgconfig ];
}