libopus: don't overuse with lib

https://github.com/NixOS/nixpkgs/issues/208242
This commit is contained in:
seth
2024-06-11 20:21:40 -04:00
parent 9beb441b15
commit 6fb27aeca4
+4 -4
View File
@@ -72,12 +72,12 @@ stdenv.mkDerivation (finalAttrs: {
};
};
meta = with lib; {
meta = {
description = "Open, royalty-free, highly versatile audio codec";
homepage = "https://opus-codec.org/";
changelog = "https://gitlab.xiph.org/xiph/opus/-/releases/v${finalAttrs.version}";
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ getchoo ];
license = lib.licenses.bsd3;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ getchoo ];
};
})