nixpkgs/pkgs/development/tools/amazon-qldb-shell/default.nix
2024-04-06 12:59:29 +08:00

47 lines
1.1 KiB
Nix

{ stdenv
, lib
, cmake
, fetchFromGitHub
, rustPlatform
, testers
, Security
}:
let
pname = "amazon-qldb-shell";
version = "2.0.1";
package = rustPlatform.buildRustPackage {
inherit pname version;
src = fetchFromGitHub {
owner = "awslabs";
repo = pname;
rev = "v${version}";
sha256 = "sha256-aXScqJ1LijMSAy9YkS5QyXtTqxd19lLt3BbyVXlbw8o=";
};
nativeBuildInputs = [ cmake rustPlatform.bindgenHook ];
buildInputs = lib.optional stdenv.isDarwin Security;
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"amazon-qldb-driver-0.1.0" = "sha256-az0rANBcryHHnpGWvo15TGGW4KMUULZHaj5msIHts14=";
};
};
passthru.tests.version = testers.testVersion { inherit package; };
meta = with lib; {
description = "An interface to send PartiQL statements to Amazon Quantum Ledger Database (QLDB)";
homepage = "https://github.com/awslabs/amazon-qldb-shell";
license = licenses.asl20;
maintainers = [ maintainers.terlar ];
mainProgram = "qldb";
# See https://hydra.nixos.org/build/255146098/log.
broken = true; # Added 2024-04-06
};
};
in
package