Merge pull request #222062 from RaitoBezarius/ultrablue
This commit is contained in:
commit
decd52f650
31
pkgs/os-specific/linux/ultrablue-server/default.nix
Normal file
31
pkgs/os-specific/linux/ultrablue-server/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user