summaryrefslogtreecommitdiff
path: root/lib/bluetooth
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-12-21 21:24:42 +0100
committerGitHub <[email protected]>2024-12-21 21:24:42 +0100
commit0507a6bf1035ddbe72fdb64c0fb5dc1c991faeaf (patch)
tree65a46958208fa36e5b05aa4b5a9495f896f0d641 /lib/bluetooth
parentdafb191661d88c3182b6571461df56687ec90cdd (diff)
nix: refactor (#197)
close #192
Diffstat (limited to 'lib/bluetooth')
-rw-r--r--lib/bluetooth/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/bluetooth/default.nix b/lib/bluetooth/default.nix
new file mode 100644
index 0000000..f2d58c8
--- /dev/null
+++ b/lib/bluetooth/default.nix
@@ -0,0 +1,10 @@
+{mkAstalPkg, ...}:
+mkAstalPkg {
+ pname = "astal-bluetooth";
+ src = ./.;
+
+ libname = "bluetooth";
+ authors = "Aylur";
+ gir-suffix = "Bluetooth";
+ description = "DBus proxy for bluez";
+}