pinentry-rofi: init at 2.0.3

This commit is contained in:
Gürkan Gür 2022-07-11 10:34:33 +02:00
parent 836daa7b45
commit bc60496489
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ stdenv
, lib
, fetchFromGitHub
, pkg-config
, autoreconfHook
, autoconf-archive
, guile
, texinfo
, rofi
}:
stdenv.mkDerivation rec {
pname = "pinentry-rofi";
version = "2.0.3";
src = fetchFromGitHub {
owner = "plattfot";
repo = pname;
rev = version;
sha256 = "sha256-EzbeMAhdn9SuSmE+aMHeyuje3s74isIKRDTrFO3bX04=";
};
nativeBuildInputs = [
autoconf-archive
autoreconfHook
pkg-config
texinfo
];
buildInputs = [ guile ];
propagatedBuildInputs = [ rofi ];
meta = with lib; {
description = "Rofi frontend to pinentry";
homepage = "https://github.com/plattfot/pinentry-rofi";
license = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ seqizz ];
};
}

View file

@ -9610,6 +9610,8 @@ with pkgs;
pinentry-bemenu = callPackage ../tools/security/pinentry-bemenu { };
pinentry-rofi = callPackage ../tools/security/pinentry-rofi { };
pingtcp = callPackage ../tools/networking/pingtcp { };
pinnwand = callPackage ../servers/pinnwand { };