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

with rustPlatform;

buildRustPackage rec {
  name = "linoquotes-gamma-${version}";
  version = "3.0.0";
  src = ./.;
  depsSha256 = "1xrkcj6mgy2gzzm09pprrpbli9pqn7vv6yj3ybl80059nhwybr8r";
  buildInputs = [ openssl sqlite ];
  nativeBuildInputs = [ pkgconfig ];
}