alsa-lib: remove use of with lib;

This commit is contained in:
Mikael Voss 2025-07-24 16:05:12 +02:00
parent 7c7a17048d
commit 7f1ff6b976
No known key found for this signature in database

View File

@ -38,7 +38,7 @@ stdenv.mkDerivation (finalAttrs: {
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
meta = with lib; {
meta = {
homepage = "http://www.alsa-project.org/";
description = "ALSA, the Advanced Linux Sound Architecture libraries";
mainProgram = "aserver";
@ -48,12 +48,12 @@ stdenv.mkDerivation (finalAttrs: {
MIDI functionality to the Linux-based operating system.
'';
license = licenses.lgpl21Plus;
license = lib.licenses.lgpl21Plus;
pkgConfigModules = [
"alsa"
"alsa-topology"
];
platforms = platforms.linux ++ platforms.freebsd;
maintainers = with maintainers; [ l-as ];
platforms = with lib.platforms; linux ++ freebsd;
maintainers = with lib.maintainers; [ l-as ];
};
})