mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
32 lines
797 B
Nix
32 lines
797 B
Nix
{ lib, stdenv, buildPackages
|
|
, staticBuild ? stdenv.hostPlatform.isStatic
|
|
}:
|
|
|
|
let inherit (buildPackages.buildPackages) gcc; in
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "libiberty";
|
|
version = "${gcc.cc.version}";
|
|
|
|
inherit (gcc.cc) src;
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
postUnpack = "sourceRoot=\${sourceRoot}/libiberty";
|
|
|
|
configureFlags = [ "--enable-install-libiberty" ]
|
|
++ lib.optional (!staticBuild) "--enable-shared";
|
|
|
|
postInstall = lib.optionalString (!staticBuild) ''
|
|
cp pic/libiberty.a $out/lib*/libiberty.a
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gcc.gnu.org/";
|
|
license = licenses.lgpl2;
|
|
description = "Collection of subroutines used by various GNU programs";
|
|
maintainers = with maintainers; [ abbradar ericson2314 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|