8 lines
104 B
Nix
8 lines
104 B
Nix
|
{ ... }:
|
||
|
res: pkgs: super:
|
||
|
|
||
|
with pkgs; {
|
||
|
nghttp2 = callPackage ./. { };
|
||
|
libnghttp2 = nghttp2.lib;
|
||
|
}
|