sgxs-tools: init at version 0.8.6 (#338282)

authored by Arne Keller and committed by GitHub a118bf06 60a34da8

+29
+29
pkgs/by-name/sg/sgxs-tools/package.nix
··· 1 + { 2 + lib, 3 + fetchCrate, 4 + rustPlatform, 5 + pkg-config, 6 + openssl_3, 7 + protobuf, 8 + }: 9 + rustPlatform.buildRustPackage rec { 10 + pname = "sgxs-tools"; 11 + version = "0.8.6"; 12 + nativeBuildInputs = [ 13 + pkg-config 14 + protobuf 15 + ]; 16 + buildInputs = [ openssl_3 ]; 17 + src = fetchCrate { 18 + inherit pname version; 19 + hash = "sha256-24lUhi4IPv+asM51/BfufkOUYVellXoXsbWXWN/zoBw="; 20 + }; 21 + cargoHash = "sha256-vtuOCLo7qBOfqMynykqf9folmlETx3or35+CuTurh3s="; 22 + meta = { 23 + description = "Utilities for working with the SGX stream format"; 24 + homepage = "https://github.com/fortanix/rust-sgx"; 25 + maintainers = [ lib.maintainers.ozwaldorf ]; 26 + platforms = [ "x86_64-linux" ]; 27 + license = lib.licenses.mpl20; 28 + }; 29 + }