Skip to content

Commit

Permalink
sgxs-tools: init at version 0.8.6 (NixOS#338282)
Browse files Browse the repository at this point in the history
  • Loading branch information
FliegendeWurst authored Dec 19, 2024
2 parents 60a34da + 3e332e4 commit a118bf0
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/by-name/sg/sgxs-tools/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
lib,
fetchCrate,
rustPlatform,
pkg-config,
openssl_3,
protobuf,
}:
rustPlatform.buildRustPackage rec {
pname = "sgxs-tools";
version = "0.8.6";
nativeBuildInputs = [
pkg-config
protobuf
];
buildInputs = [ openssl_3 ];
src = fetchCrate {
inherit pname version;
hash = "sha256-24lUhi4IPv+asM51/BfufkOUYVellXoXsbWXWN/zoBw=";
};
cargoHash = "sha256-vtuOCLo7qBOfqMynykqf9folmlETx3or35+CuTurh3s=";
meta = {
description = "Utilities for working with the SGX stream format";
homepage = "https://github.com/fortanix/rust-sgx";
maintainers = [ lib.maintainers.ozwaldorf ];
platforms = [ "x86_64-linux" ];
license = lib.licenses.mpl20;
};
}

0 comments on commit a118bf0

Please sign in to comment.