nixpkgs/pkgs/by-name/pi/pinentry-rofi/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
792 B
Nix
Raw Normal View History

2022-07-11 09:34:33 +01:00
{ stdenv
, lib
, fetchFromGitHub
, pkg-config
, autoreconfHook
, autoconf-archive
, guile
, texinfo
, rofi
}:
stdenv.mkDerivation rec {
pname = "pinentry-rofi";
2024-10-15 20:14:51 +01:00
version = "3.0.0";
2022-07-11 09:34:33 +01:00
src = fetchFromGitHub {
owner = "plattfot";
repo = pname;
rev = version;
2024-10-15 20:14:51 +01:00
sha256 = "sha256-GHpVO8FRphVW0+In7TtB39ewwVLU1EHOeVL05pnZdFQ=";
2022-07-11 09:34:33 +01:00
};
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 ];
2024-01-14 17:30:49 +00:00
mainProgram = "pinentry-rofi";
2022-07-11 09:34:33 +01:00
};
}