Merge pull request #178894 from lockejan/darwin/pam_reattach
This commit is contained in:
commit
11ca3343f5
2 changed files with 47 additions and 0 deletions
45
pkgs/os-specific/darwin/pam-reattach/default.nix
Normal file
45
pkgs/os-specific/darwin/pam-reattach/default.nix
Normal file
|
@ -0,0 +1,45 @@
|
|||
{ lib, stdenv, fetchFromGitHub, cmake, openpam, darwin }:
|
||||
|
||||
let
|
||||
sdk =
|
||||
if stdenv.isAarch64
|
||||
then null
|
||||
else darwin.apple_sdk.sdk;
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pam_reattach";
|
||||
version = "1.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "fabianishere";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1k77kxqszdwgrb50w7algj22pb4fy5b9649cjb08zq9fqrzxcbz7";
|
||||
};
|
||||
|
||||
cmakeFlags = [
|
||||
"-DCMAKE_OSX_ARCHITECTURES=${
|
||||
if stdenv.hostPlatform.system == "x86_64-darwin" then
|
||||
"x86_64"
|
||||
else
|
||||
"arm64"
|
||||
}"
|
||||
"-DENABLE_CLI=ON"
|
||||
]
|
||||
++ lib.optional (sdk != null)
|
||||
"-DCMAKE_LIBRARY_PATH=${sdk}/usr/lib";
|
||||
|
||||
buildInputs = [ openpam ]
|
||||
++ lib.optional (sdk != null) sdk;
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/fabianishere/pam_reattach";
|
||||
description = "Reattach to the user's GUI session on macOS during authentication (for Touch ID support in tmux)";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ lockejan ];
|
||||
platforms = platforms.darwin;
|
||||
};
|
||||
}
|
|
@ -3302,6 +3302,8 @@ with pkgs;
|
|||
|
||||
plausible = callPackage ../servers/web-apps/plausible { };
|
||||
|
||||
pam-reattach = callPackage ../os-specific/darwin/pam-reattach {};
|
||||
|
||||
reattach-to-user-namespace = callPackage ../os-specific/darwin/reattach-to-user-namespace {};
|
||||
|
||||
skhd = callPackage ../os-specific/darwin/skhd {
|
||||
|
|
Loading…
Reference in a new issue