2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, buildPackages
|
2020-12-20 07:11:26 +01:00
|
|
|
, staticBuild ? stdenv.hostPlatform.isStatic
|
|
|
|
}:
|
2018-02-21 03:27:57 +01:00
|
|
|
|
|
|
|
let inherit (buildPackages.buildPackages) gcc; in
|
2014-10-17 01:06:57 +02:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2020-05-07 08:20:18 +02:00
|
|
|
pname = "libiberty";
|
|
|
|
version = "${gcc.cc.version}";
|
2014-10-17 01:06:57 +02:00
|
|
|
|
2016-04-30 02:01:32 +02:00
|
|
|
inherit (gcc.cc) src;
|
2014-10-17 01:06:57 +02:00
|
|
|
|
2017-10-14 17:30:59 +02:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2014-10-17 01:06:57 +02:00
|
|
|
postUnpack = "sourceRoot=\${sourceRoot}/libiberty";
|
|
|
|
|
2017-10-14 17:30:59 +02:00
|
|
|
configureFlags = [ "--enable-install-libiberty" ]
|
2021-01-21 18:00:13 +01:00
|
|
|
++ lib.optional (!staticBuild) "--enable-shared";
|
2014-10-17 01:06:57 +02:00
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
postInstall = lib.optionalString (!staticBuild) ''
|
2016-04-30 02:01:32 +02:00
|
|
|
cp pic/libiberty.a $out/lib*/libiberty.a
|
2014-10-17 01:06:57 +02:00
|
|
|
'';
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://gcc.gnu.org/";
|
2014-10-17 01:06:57 +02:00
|
|
|
license = licenses.lgpl2;
|
|
|
|
description = "Collection of subroutines used by various GNU programs";
|
2017-10-14 17:30:59 +02:00
|
|
|
maintainers = with maintainers; [ abbradar ericson2314 ];
|
2014-10-17 01:06:57 +02:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|