12 lines
237 B
Nix
12 lines
237 B
Nix
{ ... }:
|
|
res: pkgs: super:
|
|
|
|
with pkgs;
|
|
{
|
|
gnutls = callPackage ./. {
|
|
inherit (darwin.apple_sdk.frameworks) Security;
|
|
util-linux = util-linuxMinimal; # break the cyclic dependency
|
|
autoconf = buildPackages.autoconf269;
|
|
};
|
|
}
|