10 lines
109 B
Nix
10 lines
109 B
Nix
|
{ ... }:
|
||
|
res: pkgs: super:
|
||
|
|
||
|
with pkgs;
|
||
|
{
|
||
|
qrencode = callPackage ./. {
|
||
|
inherit (darwin) libobjc;
|
||
|
};
|
||
|
}
|