summary refs log tree commit diff
path: root/pkgs/development/libraries/libiberty/default.nix
blob: 70d6b24cbfc57efac14f6f0b75cc5c3970fc6d45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  version = "4.8.4";
  name = "libiberty-${version}";

  src = fetchurl {
    url = "mirror://gnu/gcc/gcc-${version}/gcc-${version}.tar.bz2";
    sha256 = "15c6gwm6dzsaagamxkak5smdkf1rdfbqqjs9jdbrp3lbg4ism02a";
  };

  postUnpack = "sourceRoot=\${sourceRoot}/libiberty";

  enable_shared = 1;

  installPhase = ''
    mkdir -p $out/lib
    cp pic/libiberty.a $out/lib/libiberty_pic.a
  '';

  meta = with stdenv.lib; {
    homepage = http://gcc.gnu.org/;
    license = licenses.lgpl2;
    description = "Collection of subroutines used by various GNU programs";
    maintainers = maintainers.abbradar;
    platforms = platforms.unix;
  };
}