mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 19:27:17 +00:00
13 lines
263 B
Nix
13 lines
263 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.stdenv.mkDerivation {
|
|
name = "pinentry-mac";
|
|
src = pkgs.pinentry_mac;
|
|
installPhase = ''
|
|
# -*-sh-*-
|
|
|
|
mkdir -p "$out/bin"
|
|
|
|
cp "$src/Applications/pinentry-mac.app/Contents/MacOS/pinentry-mac" "$out/bin/pinentry-mac"
|
|
'';
|
|
}
|