python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / pinentry-rofi / default.nix
blobb971f37af69c8dc50901d1e81e7e8cf85d9f93e7
1 { stdenv
2 , lib
3 , fetchFromGitHub
4 , pkg-config
5 , autoreconfHook
6 , autoconf-archive
7 , guile
8 , texinfo
9 , rofi
12 stdenv.mkDerivation rec {
13   pname = "pinentry-rofi";
14   version = "2.0.3";
16   src = fetchFromGitHub {
17     owner = "plattfot";
18     repo = pname;
19     rev = version;
20     sha256 = "sha256-EzbeMAhdn9SuSmE+aMHeyuje3s74isIKRDTrFO3bX04=";
21   };
23   nativeBuildInputs = [
24     autoconf-archive
25     autoreconfHook
26     pkg-config
27     texinfo
28   ];
30   buildInputs = [ guile ];
32   propagatedBuildInputs = [ rofi ];
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   };