ultrablue-server: init at unstable-2023-01-25

This commit is contained in:
Raito Bezarius 2023-03-19 19:38:57 +01:00
parent 7ee8aa8039
commit 8d3f59cd55
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib
, fetchFromGitHub
, buildGoModule
}:
buildGoModule {
pname = "ultrablue-server";
version = "unstable-fosdem2023";
src = fetchFromGitHub {
owner = "ANSSI-FR";
repo = "ultrablue";
# Do not use a more recent
rev = "tags/fosdem-2023";
hash = "sha256-rnUbgZI+SycYCDUoSziOy+WxRFvyM3XJWJnk3+t0eb4=";
# rev = "6de04af6e353e38c030539c5678e5918f64be37e";
};
sourceRoot = "source/server";
vendorSha256 = "sha256-249LWguTHIF0HNIo8CsE/HWpAtBw4P46VPvlTARLTpw=";
doCheck = false;
meta = with lib; {
description = "User-friendly Lightweight TPM Remote Attestation over Bluetooth";
homepage = "https://github.com/ANSSI-FR/ultrablue";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ raitobezarius ];
};
}

View file

@ -8487,6 +8487,8 @@ with pkgs;
jamulus = libsForQt5.callPackage ../applications/audio/jamulus { };
ultrablue-server = callPackage ../os-specific/linux/ultrablue-server { };
ibm-sw-tpm2 = callPackage ../tools/security/ibm-sw-tpm2 { };
ibniz = callPackage ../tools/graphics/ibniz { };