depot/third_party/nixpkgs/pkgs/by-name/tl/tlmi-auth/package.nix
Default email 60f07311b9 Project import generated by Copybara.
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
2024-02-06 17:22:34 -08:00

39 lines
777 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, meson
, ninja
, openssl
}:
stdenv.mkDerivation (finalAttrs: {
pname = "tlmi-auth";
version = "1.0.1";
src = fetchFromGitHub {
owner = "lenovo";
repo = "tlmi-auth";
rev = "v${finalAttrs.version}";
hash = "sha256-/juXQrb3MsQ6FxmrAa7E1f0vIMu1397tZ1pzLfr56M4=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
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 = "tlmi-auth";
license = licenses.gpl2;
platforms = platforms.linux;
};
})