core/pkgs/by-name/gn/gnutls/packages.nix
2024-05-13 11:34:52 -04:00

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;
};
}