tlmi-auth: init at 1.0.1

Signed-off-by: Philippe Schaaf <philippe.schaaf@secunet.com>
This commit is contained in:
Philippe Schaaf 2024-01-26 11:31:11 +01:00
parent d75eb61902
commit ce689654cf
No known key found for this signature in database
GPG key ID: F7DA60FBF3643290

View file

@ -0,0 +1,39 @@
{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, meson
, ninja
, openssl
}:
let
name = "tlmi-auth";
version = "1.0.1";
in
stdenv.mkDerivation {
pname = name;
version = version;
src = fetchFromGitHub {
owner = "lenovo";
repo = name;
rev = "v${version}";
hash = "sha256-/juXQrb3MsQ6FxmrAa7E1f0vIMu1397tZ1pzLfr56M4=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
openssl
];
meta = with lib; {
homepage = "https://github.com/lenovo/tlmi-auth";
maintainers = with maintainers; [ snpschaaf ];
description = "Utility for creating signature strings needed for thinklmi certificate based authentication";
mainProgram = name;
license = licenses.gpl2;
platforms = platforms.linux;
};
}