nixpkgs/pkgs/development/libraries/libiberty/default.nix

29 lines
784 B
Nix
Raw Normal View History

{ stdenv, buildPackages, fetchurl, staticBuild ? false }:
let inherit (buildPackages.buildPackages) gcc; in
2014-10-16 23:06:57 +00:00
stdenv.mkDerivation rec {
2016-04-30 00:01:32 +00:00
name = "libiberty-${gcc.cc.version}";
2014-10-16 23:06:57 +00:00
2016-04-30 00:01:32 +00:00
inherit (gcc.cc) src;
2014-10-16 23:06:57 +00:00
2017-10-14 15:30:59 +00:00
outputs = [ "out" "dev" ];
2014-10-16 23:06:57 +00:00
postUnpack = "sourceRoot=\${sourceRoot}/libiberty";
2017-10-14 15:30:59 +00:00
configureFlags = [ "--enable-install-libiberty" ]
++ stdenv.lib.optional (!staticBuild) "--enable-shared";
2014-10-16 23:06:57 +00:00
2017-10-14 15:30:59 +00:00
postInstall = stdenv.lib.optionalString (!staticBuild) ''
2016-04-30 00:01:32 +00:00
cp pic/libiberty.a $out/lib*/libiberty.a
2014-10-16 23:06:57 +00:00
'';
meta = with stdenv.lib; {
homepage = http://gcc.gnu.org/;
license = licenses.lgpl2;
description = "Collection of subroutines used by various GNU programs";
2017-10-14 15:30:59 +00:00
maintainers = with maintainers; [ abbradar ericson2314 ];
2014-10-16 23:06:57 +00:00
platforms = platforms.unix;
};
}