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/wireplumber/default.nix | |
parent | dafb191661d88c3182b6571461df56687ec90cdd (diff) |
nix: refactor (#197)
close #192
Diffstat (limited to 'lib/wireplumber/default.nix')
-rw-r--r-- | lib/wireplumber/default.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/wireplumber/default.nix b/lib/wireplumber/default.nix new file mode 100644 index 0000000..f9eb832 --- /dev/null +++ b/lib/wireplumber/default.nix @@ -0,0 +1,16 @@ +{ + mkAstalPkg, + pkgs, + ... +}: +mkAstalPkg { + pname = "astal-wireplumber"; + src = ./.; + packages = [pkgs.wireplumber]; + + libname = "wireplumber"; + authors = "kotontrion"; + gir-suffix = "Wp"; + description = "Wrapper library over the wireplumber API"; + dependencies = ["WP-0.5"]; +} |