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