forked from lix-project/hydra
flake: add ipv6 support to civetweb
This commit is contained in:
parent
6d9fac2577
commit
3f303b479c
|
@ -44,7 +44,14 @@
|
||||||
# Overlay these packages to use dependencies from the Nixpkgs everything
|
# Overlay these packages to use dependencies from the Nixpkgs everything
|
||||||
# else uses, to side-step the version difference: glibc is 2.32 in the
|
# else uses, to side-step the version difference: glibc is 2.32 in the
|
||||||
# nix-pinned Nixpkgs, but 2.33 in the newNixpkgs commit.
|
# nix-pinned Nixpkgs, but 2.33 in the newNixpkgs commit.
|
||||||
civetweb = final.callPackage "${newNixpkgs}/pkgs/development/libraries/civetweb" { };
|
civetweb = (final.callPackage "${newNixpkgs}/pkgs/development/libraries/civetweb" { }).overrideAttrs
|
||||||
|
# Can be dropped once newNixpkgs points to a revision containing
|
||||||
|
# https://github.com/NixOS/nixpkgs/pull/167751
|
||||||
|
({ cmakeFlags ? [ ], ... }: {
|
||||||
|
cmakeFlags = cmakeFlags ++ [
|
||||||
|
"-DCIVETWEB_ENABLE_IPV6=1"
|
||||||
|
];
|
||||||
|
});
|
||||||
prometheus-cpp = final.callPackage "${newNixpkgs}/pkgs/development/libraries/prometheus-cpp" { };
|
prometheus-cpp = final.callPackage "${newNixpkgs}/pkgs/development/libraries/prometheus-cpp" { };
|
||||||
|
|
||||||
# Add LDAP dependencies that aren't currently found within nixpkgs.
|
# Add LDAP dependencies that aren't currently found within nixpkgs.
|
||||||
|
|
Loading…
Reference in a new issue