tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
pinentry-rofi: init at 2.0.3
Gürkan Gür
3 years ago
bc604964
836daa7b
+43
2 changed files
expand all
collapse all
unified
split
pkgs
tools
security
pinentry-rofi
default.nix
top-level
all-packages.nix
+41
pkgs/tools/security/pinentry-rofi/default.nix
···
1
1
+
{ stdenv
2
2
+
, lib
3
3
+
, fetchFromGitHub
4
4
+
, pkg-config
5
5
+
, autoreconfHook
6
6
+
, autoconf-archive
7
7
+
, guile
8
8
+
, texinfo
9
9
+
, rofi
10
10
+
}:
11
11
+
12
12
+
stdenv.mkDerivation rec {
13
13
+
pname = "pinentry-rofi";
14
14
+
version = "2.0.3";
15
15
+
16
16
+
src = fetchFromGitHub {
17
17
+
owner = "plattfot";
18
18
+
repo = pname;
19
19
+
rev = version;
20
20
+
sha256 = "sha256-EzbeMAhdn9SuSmE+aMHeyuje3s74isIKRDTrFO3bX04=";
21
21
+
};
22
22
+
23
23
+
nativeBuildInputs = [
24
24
+
autoconf-archive
25
25
+
autoreconfHook
26
26
+
pkg-config
27
27
+
texinfo
28
28
+
];
29
29
+
30
30
+
buildInputs = [ guile ];
31
31
+
32
32
+
propagatedBuildInputs = [ rofi ];
33
33
+
34
34
+
meta = with lib; {
35
35
+
description = "Rofi frontend to pinentry";
36
36
+
homepage = "https://github.com/plattfot/pinentry-rofi";
37
37
+
license = licenses.gpl3Plus;
38
38
+
platforms = platforms.unix;
39
39
+
maintainers = with maintainers; [ seqizz ];
40
40
+
};
41
41
+
}
+2
pkgs/top-level/all-packages.nix
···
9610
9610
9611
9611
pinentry-bemenu = callPackage ../tools/security/pinentry-bemenu { };
9612
9612
9613
9613
+
pinentry-rofi = callPackage ../tools/security/pinentry-rofi { };
9614
9614
+
9613
9615
pingtcp = callPackage ../tools/networking/pingtcp { };
9614
9616
9615
9617
pinnwand = callPackage ../servers/pinnwand { };