tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
libiberty: Add dev output
John Ericson
8 years ago
c0a04ec2
9ea242c6
+8
-4
2 changed files
expand all
collapse all
unified
split
lib
maintainers.nix
pkgs
development
libraries
libiberty
default.nix
+1
lib/maintainers.nix
···
205
205
eqyiel = "Ruben Maher <r@rkm.id.au>";
206
206
ericbmerritt = "Eric Merritt <eric@afiniate.com>";
207
207
ericsagnes = "Eric Sagnes <eric.sagnes@gmail.com>";
208
208
+
ericson2314 = "John Ericson <John.Ericson@Obsidian.Systems>";
208
209
erictapen = "Justin Humm <justin.humm@posteo.de>";
209
210
erikryb = "Erik Rybakken <erik.rybakken@math.ntnu.no>";
210
211
ertes = "Ertugrul Söylemez <esz@posteo.de>";
+7
-4
pkgs/development/libraries/libiberty/default.nix
···
1
1
-
{ stdenv, lib, fetchurl, gcc, staticBuild ? false }:
1
1
+
{ stdenv, fetchurl, gcc, staticBuild ? false }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
name = "libiberty-${gcc.cc.version}";
5
5
6
6
inherit (gcc.cc) src;
7
7
8
8
+
outputs = [ "out" "dev" ];
9
9
+
8
10
postUnpack = "sourceRoot=\${sourceRoot}/libiberty";
9
11
10
10
-
configureFlags = [ "--enable-install-libiberty" ] ++ lib.optional (!staticBuild) "--enable-shared";
12
12
+
configureFlags = [ "--enable-install-libiberty" ]
13
13
+
++ stdenv.lib.optional (!staticBuild) "--enable-shared";
11
14
12
12
-
postInstall = lib.optionalString (!staticBuild) ''
15
15
+
postInstall = stdenv.lib.optionalString (!staticBuild) ''
13
16
cp pic/libiberty.a $out/lib*/libiberty.a
14
17
'';
15
18
···
17
20
homepage = http://gcc.gnu.org/;
18
21
license = licenses.lgpl2;
19
22
description = "Collection of subroutines used by various GNU programs";
20
20
-
maintainers = with maintainers; [ abbradar ];
23
23
+
maintainers = with maintainers; [ abbradar ericson2314 ];
21
24
platforms = platforms.unix;
22
25
};
23
26
}