10 lines
149 B
Nix
10 lines
149 B
Nix
{ ... }:
|
|
res: pkgs: super:
|
|
|
|
with pkgs;
|
|
{
|
|
libtool = libtool_2;
|
|
libtool_1_5 = callPackage ./. { };
|
|
libtool_2 = callPackage ./libtool2.nix { };
|
|
}
|