Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
546 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
generateSplicesForMkScope,
makeScopeWithSplicing',
lib,
}:
makeScopeWithSplicing' {
otherSplices = generateSplicesForMkScope "linphonePackages";
extra = self: {
mkLinphoneDerivation = self.mk-linphone-derivation;
linphoneSdkVersion = "5.4.43";
linphoneSdkHash = "sha256-lv2phU2qF51OIejzjgaBUo9NIdDv4bbK+bpY37Gnr8U=";
};
f =
self:
let
packages = lib.filterAttrs (name: value: value == "directory") (builtins.readDir ./.);
in
lib.mapAttrs (name: value: self.callPackage ./${name} { }) packages;
}