mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 20:54:56 +00:00
uses EOL pcre, complicates our handling inside Nixpkgs. There are much newer versions available.
12 lines
199 B
Nix
12 lines
199 B
Nix
{
|
|
callPackages,
|
|
varnish80,
|
|
lib,
|
|
}:
|
|
{
|
|
varnish80Packages = lib.recurseIntoAttrs rec {
|
|
varnish = varnish80;
|
|
modules = (callPackages ./modules.nix { inherit varnish; }).modules27;
|
|
};
|
|
}
|