Merge pull request #181066 from seqizz/g_pinentryrofi
pinentry-rofi: init at 2.0.3
This commit is contained in:
commit
979b8d898d
41
pkgs/tools/security/pinentry-rofi/default.nix
Normal file
41
pkgs/tools/security/pinentry-rofi/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -9620,6 +9620,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user