Skip to content

Commit

Permalink
tlmi-auth: init at 1.0.1
Browse files Browse the repository at this point in the history
Signed-off-by: Philippe Schaaf <[email protected]>
  • Loading branch information
snpschaaf committed Jan 26, 2024
1 parent d75eb61 commit ce68965
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions pkgs/by-name/tl/tlmi-auth/package.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}

0 comments on commit ce68965

Please sign in to comment.