mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
c7b2d3b1a7
glibtool is simply libtool with "g" prefixed, because this is the convention adopted in MacOS for distinguishing between GNU versions of binaries/libraries and their equivalents shipped by Apple. Much software for MacOS assumes that libtool can be found at `glibtool` so this is a convenience wrapper for this case.
8 lines
140 B
Nix
8 lines
140 B
Nix
{ libtool }:
|
|
|
|
libtool.overrideAttrs {
|
|
pname = "glibtool";
|
|
meta.mainProgram = "glibtool";
|
|
configureFlags = [ "--program-prefix=g" ];
|
|
}
|