Skip to content

Commit 8ccce8d

Browse files
committedSep 25, 2017
Add more dev outputs
1 parent cf599d3 commit 8ccce8d

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed
 

Diff for: ‎pkgs/desktops/gnome-2/platform/libbonoboui/default.nix

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ stdenv.mkDerivation rec {
1010
sha256 = "1kbgqh7bw0fdx4f1a1aqwpff7gp5mwhbaz60c6c98bc4djng5dgs";
1111
};
1212

13+
outputs = [ "out" "dev" ];
14+
1315
nativeBuildInputs = [ pkgconfig intltool ];
1416
buildInputs = [ bison popt gtk libxml2 GConf libglade libtool ];
1517
propagatedBuildInputs = [ libbonobo libgnomecanvas libgnome ];

Diff for: ‎pkgs/desktops/gnome-2/platform/libgnomeui/default.nix

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ stdenv.mkDerivation rec {
1111
sha256 = "03rwbli76crkjl6gp422wrc9lqpl174k56cp9i96b7l8jlj2yddf";
1212
};
1313

14+
outputs = [ "out" "dev" ];
15+
1416
nativeBuildInputs = [ pkgconfig intltool ];
1517
buildInputs =
1618
[ xorg.xlibsWrapper libxml2 GConf pango glib libgnome_keyring libglade libtool ];

Diff for: ‎pkgs/development/libraries/xmlsec/default.nix

+8
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ stdenv.mkDerivation rec {
1212
sha256 = "1lpwj8dxwhha54sby0v5axjk79h56jnhjjiwiasbbk15vwzahz4n";
1313
};
1414

15+
outputs = [ "out" "dev" ];
16+
1517
buildInputs = [ makeWrapper libxml2 gnutls libxslt pkgconfig libgcrypt libtool openssl nss ];
18+
1619
enableParallelBuilding = true;
1720
doCheck = true;
1821

@@ -23,6 +26,11 @@ stdenv.mkDerivation rec {
2326
# otherwise libxmlsec1-gnutls.so won't find libgcrypt.so, after #909
2427
NIX_LDFLAGS = [ "-lgcrypt" ];
2528

29+
postInstall = ''
30+
moveToOutput "bin/xmlsec1-config" "$dev"
31+
moveToOutput "lib/xmlsec1Conf.sh" "$dev"
32+
'';
33+
2634
postFixup = ''
2735
wrapProgram "$out/bin/xmlsec1" --prefix LD_LIBRARY_PATH ":" "$out/lib"
2836
'';

0 commit comments

Comments
 (0)
Please sign in to comment.