nom-nom-nix-gc/default.nix

15 lines
370 B
Nix
Raw Normal View History

2022-12-19 20:02:47 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.rustPlatform.buildRustPackage {
pname = "nom-nom-nix-gc";
version = "0.0";
2023-11-23 12:39:13 +01:00
nativeBuildInputs = [
pkgs.pkg-config
# Required to run the integration tests.
pkgs.postgresql
];
2023-07-31 08:51:35 +02:00
buildInputs = [ pkgs.openssl ];
2022-12-19 20:02:47 +01:00
src = pkgs.lib.cleanSource ./.;
2024-01-30 12:00:39 +01:00
cargoHash = "sha256-+fS2adHUigIgnporYk6rKvxUY2aSKbvssPnQYnzU+4Y=";
2022-12-19 20:02:47 +01:00
}