9 lines
166 B
Nix
9 lines
166 B
Nix
|
{ ... }:
|
||
|
res: pkgs: super:
|
||
|
|
||
|
with pkgs;
|
||
|
{
|
||
|
rtmpdump = callPackage ./. { };
|
||
|
rtmpdump_gnutls = rtmpdump.override { gnutlsSupport = true; opensslSupport = false; };
|
||
|
}
|