9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
29 lines
785 B
Nix
29 lines
785 B
Nix
{ lib, stdenv, fetchCrate, rustPlatform, pkg-config, openssl, Security }:
|
|
|
|
let
|
|
pname = "cargo-pgrx";
|
|
version = "0.9.8";
|
|
in
|
|
rustPlatform.buildRustPackage rec {
|
|
inherit version pname;
|
|
|
|
src = fetchCrate {
|
|
inherit version pname;
|
|
hash = "sha256-Sk9fz84EheP+Ohq2e2E1q7dKDPE2Y4QSsHGlNvNb/g0=";
|
|
};
|
|
|
|
cargoHash = "sha256-MSANrOjpcyKuoxyomCspxjYwzlT7BLJE3CseczOfOJY=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ openssl ]
|
|
++ lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
meta = with lib; {
|
|
description = "Build Postgres Extensions with Rust!";
|
|
homepage = "https://github.com/tcdi/pgrx";
|
|
changelog = "https://github.com/tcdi/pgrx/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ happysalada ];
|
|
};
|
|
}
|