lol

pinentry-rofi: init at 2.0.3

+43
+41
pkgs/tools/security/pinentry-rofi/default.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchFromGitHub 4 + , pkg-config 5 + , autoreconfHook 6 + , autoconf-archive 7 + , guile 8 + , texinfo 9 + , rofi 10 + }: 11 + 12 + stdenv.mkDerivation rec { 13 + pname = "pinentry-rofi"; 14 + version = "2.0.3"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "plattfot"; 18 + repo = pname; 19 + rev = version; 20 + sha256 = "sha256-EzbeMAhdn9SuSmE+aMHeyuje3s74isIKRDTrFO3bX04="; 21 + }; 22 + 23 + nativeBuildInputs = [ 24 + autoconf-archive 25 + autoreconfHook 26 + pkg-config 27 + texinfo 28 + ]; 29 + 30 + buildInputs = [ guile ]; 31 + 32 + propagatedBuildInputs = [ rofi ]; 33 + 34 + meta = with lib; { 35 + description = "Rofi frontend to pinentry"; 36 + homepage = "https://github.com/plattfot/pinentry-rofi"; 37 + license = licenses.gpl3Plus; 38 + platforms = platforms.unix; 39 + maintainers = with maintainers; [ seqizz ]; 40 + }; 41 + }
+2
pkgs/top-level/all-packages.nix
··· 9610 9610 9611 9611 pinentry-bemenu = callPackage ../tools/security/pinentry-bemenu { }; 9612 9612 9613 + pinentry-rofi = callPackage ../tools/security/pinentry-rofi { }; 9614 + 9613 9615 pingtcp = callPackage ../tools/networking/pingtcp { }; 9614 9616 9615 9617 pinnwand = callPackage ../servers/pinnwand { };