diff options
author | Aylur <[email protected]> | 2024-12-21 21:24:42 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2024-12-21 21:24:42 +0100 |
commit | 0507a6bf1035ddbe72fdb64c0fb5dc1c991faeaf (patch) | |
tree | 65a46958208fa36e5b05aa4b5a9495f896f0d641 /lib/bluetooth | |
parent | dafb191661d88c3182b6571461df56687ec90cdd (diff) |
nix: refactor (#197)
close #192
Diffstat (limited to 'lib/bluetooth')
-rw-r--r-- | lib/bluetooth/default.nix | 10 |
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"; +} |