{ lib, rustPlatform, sqlite, openssl, gettext, pkg-config, commitShaShort ? "" }: rustPlatform.buildRustPackage rec { pname = "hagridctl"; version = "0.1.0"; src = ./.; cargoLock = { lockFile = ./Cargo.lock; outputHashes = { "rocket_i18n-0.5.0" = "sha256-EbUE8Z3TQBnDnptl9qWK6JvsACCgP7EXTxcA7pouYbc="; }; }; nativeBuildInputs = [ pkg-config gettext ]; buildInputs = [ sqlite openssl ]; buildAndTestSubdir = "hagridctl"; COMMIT_SHA_SHORT = commitShaShort; meta = with lib; { description = "A verifying keyserver"; homepage = "https://gitlab.com/keys.openpgp.org/hagrid"; license = with licenses; [ gpl3 ]; maintainers = with maintainers; [ valodim ]; platforms = platforms.all; }; }