okapi: init at 1.2.0

This commit is contained in:
Tomislav Markovski 2021-12-03 10:30:17 -05:00
parent 3e892167eb
commit a64683ad8c
No known key found for this signature in database
GPG Key ID: 1521F737E5E5A985
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib, stdenv, rustPlatform, fetchurl, Security }:
rustPlatform.buildRustPackage rec {
pname = "okapi";
version = "1.2.0";
src = fetchurl {
url = "https://github.com/trinsic-id/okapi/releases/download/v${version}/okapi-vendor-${version}.tar.gz";
sha256 = "sha256-1aADcwEEWMhoJjwc8wkEcmBYXz+5josOfI/KLaton2k=";
};
cargoVendorDir = "vendor";
doCheck = false;
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
postInstall = ''
cp -r include $out
'';
meta = with lib; {
description = "Okapi Library";
longDescription = ''
Collection of tools that support workflows for working
with authentic data and identity management
'';
homepage = "https://github.com/trinsic-id/okapi";
license = licenses.asl20;
maintainers = with maintainers; [ tmarkovski ];
};
}

View File

@ -22470,6 +22470,10 @@ with pkgs;
ofono = callPackage ../tools/networking/ofono { };
okapi = callPackage ../development/libraries/okapi {
inherit (darwin.apple_sdk.frameworks) Security;
};
openpam = callPackage ../development/libraries/openpam { };
openbsm = callPackage ../development/libraries/openbsm { };