Refactor mkFlag / shouldUsePkg into the nixpkgs libraries
This commit is contained in:
@@ -9,10 +9,9 @@
|
||||
, prefix ? ""
|
||||
}:
|
||||
|
||||
with stdenv;
|
||||
with stdenv.lib;
|
||||
let
|
||||
shouldUsePkg = pkg: if pkg != null && stdenv.lib.any (x: x == stdenv.system) pkg.meta.platforms then pkg else null;
|
||||
|
||||
libOnly = prefix == "lib";
|
||||
|
||||
optDbus = shouldUsePkg dbus;
|
||||
|
||||
@@ -4,9 +4,8 @@
|
||||
, alsaLib ? null, db ? null, libuuid ? null, libffado ? null, celt ? null
|
||||
}:
|
||||
|
||||
with stdenv;
|
||||
let
|
||||
shouldUsePkg = pkg: if pkg != null && stdenv.lib.any (x: x == stdenv.system) pkg.meta.platforms then pkg else null;
|
||||
|
||||
optAlsaLib = shouldUsePkg alsaLib;
|
||||
optDb = shouldUsePkg db;
|
||||
optLibuuid = shouldUsePkg libuuid;
|
||||
|
||||
Reference in New Issue
Block a user