mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
pinentry-bemenu: init at 0.9.0
This commit is contained in:
parent
86aef2a8c7
commit
1389f383e9
25
pkgs/tools/security/pinentry-bemenu/default.nix
Normal file
25
pkgs/tools/security/pinentry-bemenu/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, libassuan
|
||||
, libgpg-error, popt, bemenu }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pinentry-bemenu";
|
||||
version = "0.9.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "t-8ch";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-AFS4T7VqPga53/3rG8be9Q//6/2JJIe7+Ata33ewySg=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ meson ninja pkg-config ];
|
||||
buildInputs = [ libassuan libgpg-error popt bemenu ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Pinentry implementation based on bemenu";
|
||||
homepage = "https://github.com/t-8ch/pinentry-bemenu";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ jc ];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
}
|
@ -8794,6 +8794,8 @@ with pkgs;
|
||||
xcbuildHook = if stdenv.targetPlatform.isAarch64 then xcbuildHook else xcbuild6Hook;
|
||||
};
|
||||
|
||||
pinentry-bemenu = callPackage ../tools/security/pinentry-bemenu { };
|
||||
|
||||
pingtcp = callPackage ../tools/networking/pingtcp { };
|
||||
|
||||
pinnwand = callPackage ../servers/pinnwand { };
|
||||
|
Loading…
Reference in New Issue
Block a user