tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
rofi-bluetooth: unstable-2023-02-03 -> 0-unstable-2025-04-14
iamanaws
5 months ago
56f7ba5b
35d1a227
+10
-7
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ro
rofi-bluetooth
package.nix
+10
-7
pkgs/by-name/ro/rofi-bluetooth/package.nix
···
9
9
10
10
stdenv.mkDerivation {
11
11
pname = "rofi-bluetooth";
12
12
-
version = "0-unstable-2023-02-03";
12
12
+
version = "0-unstable-2025-04-14";
13
13
14
14
src = fetchFromGitHub {
15
15
owner = "nickclyde";
16
16
repo = "rofi-bluetooth";
17
17
# https://github.com/nickclyde/rofi-bluetooth/issues/19
18
18
-
rev = "9d91c048ff129819f4c6e9e48a17bd54343bbffb";
19
19
-
sha256 = "sha256-1Xe3QFThIvJDCUznDP5ZBzwZEMuqmxpDIV+BcVvQDG8=";
18
18
+
rev = "0cca4d4aa1c82c9373ce5da781d73683a29484c6";
19
19
+
hash = "sha256-ggYoCWRuCi1WKcwb+0zVwq3WvSqJQBitI+/XTpOc6uw=";
20
20
};
21
21
22
22
nativeBuildInputs = [ makeWrapper ];
···
37
37
runHook postInstall
38
38
'';
39
39
40
40
-
meta = with lib; {
40
40
+
meta = {
41
41
description = "Rofi-based interface to connect to bluetooth devices and display status info";
42
42
homepage = "https://github.com/nickclyde/rofi-bluetooth";
43
43
-
license = licenses.gpl3Only;
44
44
-
maintainers = with maintainers; [ MoritzBoehme ];
43
43
+
license = lib.licenses.gpl3Only;
44
44
+
maintainers = with lib.maintainers; [
45
45
+
MoritzBoehme
46
46
+
iamanaws
47
47
+
];
45
48
mainProgram = "rofi-bluetooth";
46
46
-
platforms = platforms.linux;
49
49
+
platforms = lib.platforms.linux;
47
50
};
48
51
}