Merge pull request #222062 from RaitoBezarius/ultrablue

This commit is contained in:
Sandro 2023-04-01 02:16:47 +02:00 committed by GitHub
commit decd52f650
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -8477,6 +8477,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 { };