biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / pinentry-bemenu / default.nix
blobe165fad36737c497ea8a5b4fa6026995c457948c
1 { lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, libassuan
2 , libgpg-error, popt, bemenu }:
4 stdenv.mkDerivation rec {
5   pname = "pinentry-bemenu";
6   version = "0.14.0";
8   src = fetchFromGitHub {
9     owner = "t-8ch";
10     repo = pname;
11     rev = "v${version}";
12     sha256 = "sha256-kiGUCcQIS58XjE4r0yiK4hJ85Sg5wrtBqeSYcgUKAmo=";
13   };
15   nativeBuildInputs = [ meson ninja pkg-config ];
16   buildInputs = [ libassuan libgpg-error popt bemenu ];
18   meta = with lib; {
19     description = "Pinentry implementation based on bemenu";
20     homepage = "https://github.com/t-8ch/pinentry-bemenu";
21     license = licenses.gpl3Plus;
22     maintainers = with maintainers; [ jc ];
23     platforms = with platforms; linux;
24     mainProgram = "pinentry-bemenu";
25   };