nixpkgs/pkgs/by-name/gl/glibtool/package.nix
Jesse Y Lin c7b2d3b1a7 glibtool: init
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.
2024-09-13 18:28:49 +02:00

8 lines
140 B
Nix

{ libtool }:
libtool.overrideAttrs {
pname = "glibtool";
meta.mainProgram = "glibtool";
configureFlags = [ "--program-prefix=g" ];
}