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
10
stdenv.mkDerivation {
11
pname = "rofi-bluetooth";
12
-
version = "0-unstable-2023-02-03";
13
14
src = fetchFromGitHub {
15
owner = "nickclyde";
16
repo = "rofi-bluetooth";
17
# https://github.com/nickclyde/rofi-bluetooth/issues/19
18
-
rev = "9d91c048ff129819f4c6e9e48a17bd54343bbffb";
19
-
sha256 = "sha256-1Xe3QFThIvJDCUznDP5ZBzwZEMuqmxpDIV+BcVvQDG8=";
20
};
21
22
nativeBuildInputs = [ makeWrapper ];
···
37
runHook postInstall
38
'';
39
40
-
meta = with lib; {
41
description = "Rofi-based interface to connect to bluetooth devices and display status info";
42
homepage = "https://github.com/nickclyde/rofi-bluetooth";
43
-
license = licenses.gpl3Only;
44
-
maintainers = with maintainers; [ MoritzBoehme ];
0
0
0
45
mainProgram = "rofi-bluetooth";
46
-
platforms = platforms.linux;
47
};
48
}
···
9
10
stdenv.mkDerivation {
11
pname = "rofi-bluetooth";
12
+
version = "0-unstable-2025-04-14";
13
14
src = fetchFromGitHub {
15
owner = "nickclyde";
16
repo = "rofi-bluetooth";
17
# https://github.com/nickclyde/rofi-bluetooth/issues/19
18
+
rev = "0cca4d4aa1c82c9373ce5da781d73683a29484c6";
19
+
hash = "sha256-ggYoCWRuCi1WKcwb+0zVwq3WvSqJQBitI+/XTpOc6uw=";
20
};
21
22
nativeBuildInputs = [ makeWrapper ];
···
37
runHook postInstall
38
'';
39
40
+
meta = {
41
description = "Rofi-based interface to connect to bluetooth devices and display status info";
42
homepage = "https://github.com/nickclyde/rofi-bluetooth";
43
+
license = lib.licenses.gpl3Only;
44
+
maintainers = with lib.maintainers; [
45
+
MoritzBoehme
46
+
iamanaws
47
+
];
48
mainProgram = "rofi-bluetooth";
49
+
platforms = lib.platforms.linux;
50
};
51
}