WIP: getting good

This commit is contained in:
Vladimír Čunát 2014-08-27 01:14:09 +02:00
parent 4dccb224c5
commit fb59f27a43
31 changed files with 258 additions and 145 deletions

View File

@ -3,6 +3,7 @@ fixupOutputHooks+=('if [ -z "$dontGzipMan" ]; then compressManPages "$prefix"; f
compressManPages() { compressManPages() {
local dir="$1" local dir="$1"
if [ ! -d "$dir/share/man" ]; then return; fi
echo "gzipping man pages in $dir" echo "gzipping man pages in $dir"
GLOBIGNORE=.:..:*.gz:*.bz2 GLOBIGNORE=.:..:*.gz:*.bz2

View File

@ -1,14 +1,15 @@
preConfigureHooks+=(_multioutConfig) preConfigureHooks+=(_multioutConfig)
preFixupHooks+=(_multioutDocs) preFixupHooks+=(_multioutDocs)
preFixupHooks+=(_multioutDevs)
postFixupHooks+=(_multioutPropagateDev) postFixupHooks+=(_multioutPropagateDev)
# Assign the first nonempty string to variable named $1 # Assign the first string containing nonempty variable to the variable named $1
_assignFirst() { _assignFirst() {
local varName="$1" local varName="$1"
shift shift
while [ $# -ge 0 ]; do while [ $# -ge 1 ]; do
if [ -n "$1" ]; then eval "${varName}"="$1"; return; fi if [ -n "${!1}" ]; then eval "${varName}"="$1"; return; fi
shift shift
done done
return 1 # none found return 1 # none found
@ -18,78 +19,108 @@ _assignFirst() {
# The variables are global to be usable anywhere during the build. # The variables are global to be usable anywhere during the build.
# ToDo: I was unable to get rid of the double-name redundancy (I hate bash eval ways) # ToDo: I was unable to get rid of the double-name redundancy (I hate bash eval ways)
_assignFirst outputDev "$outputDev" "$dev" "$out" # ToDo: easy way of overriding from withing mkDerivation attrset
_assignFirst outputBin "$outputBin" "$bin" "$out"
_assignFirst outputDev "$outputDev" "dev" "out"
_assignFirst outputBin "$outputBin" "bin" "out"
_assignFirst outputInclude "$outputInclude" "$outputDev" _assignFirst outputInclude "$outputInclude" "$outputDev"
# so-libs are often among the main things to keep, and so go to $out # so-libs are often among the main things to keep, and so go to $out
_assignFirst outputLib "$outputLib" "$lib" "$out" _assignFirst outputLib "$outputLib" "lib" "out"
_assignFirst outputDoc "$outputDoc" "$doc" "$out" _assignFirst outputDoc "$outputDoc" "doc" "out"
# man and info pages are small and often useful to distribute with binaries # man and info pages are small and often useful to distribute with binaries
_assignFirst outputMan "$outputMan" "$man" "$outputBin" _assignFirst outputMan "$outputMan" "man" "doc" "$outputBin"
_assignFirst outputInfo "$outputInfo" "$info" "$outputMan" _assignFirst outputInfo "$outputInfo" "info" "doc" "$outputMan"
# Make stdenv put propagated*BuildInputs into $outputDev instead of $out
propagateIntoOutput="${!outputDev}"
# put propagated*BuildInputs into $outputDev instead of $out
propagateIntoOutput="$outputDev"
# Add standard flags to put files into the desired outputs. # Add standard flags to put files into the desired outputs.
_multioutConfig() { _multioutConfig() {
if [ -n "${setOutputFlags-1}" ]; then if [ -z "${setOutputFlags-1}" ]; then return; fi;
configureFlags="\
--bindir=$outputBin/bin --sbindir=$outputBin/sbin \
--includedir=$outputInclude/include --oldincludedir=$outputInclude/include \
--mandir=$outputMan/share/man --infodir=$outputInfo/share/info --docdir=$outputDoc/share/doc \
--libdir=$outputLib/lib --libexecdir=$outputLib/libexec \
$configureFlags"
installFlags="\ configureFlags="\
pkgconfigdir=$outputDev/lib/pkgconfig \ --bindir=${!outputBin}/bin --sbindir=${!outputBin}/sbin \
m4datadir=$outputDev/share/aclocal aclocaldir=$outputDev/share/aclocal \ --includedir=${!outputInclude}/include --oldincludedir=${!outputInclude}/include \
$installFlags" --mandir=${!outputMan}/share/man --infodir=${!outputInfo}/share/info \
fi --docdir=${!outputDoc}/share/doc \
--libdir=${!outputLib}/lib --libexecdir=${!outputLib}/libexec \
$configureFlags"
installFlags="\
pkgconfigdir=${!outputDev}/lib/pkgconfig \
m4datadir=${!outputDev}/share/aclocal aclocaldir=${!outputDev}/share/aclocal \
$installFlags"
} }
# Add rpath prefixes to library paths, and avoid stdenv doing it for $out. # Add rpath prefixes to library paths, and avoid stdenv doing it for $out.
_addRpathPrefix "$outputLib" _addRpathPrefix "${!outputLib}"
NIX_NO_SELF_RPATH=1 NIX_NO_SELF_RPATH=1
# Move documentation into the desired outputs.
# Move subpaths that match pattern $1 from under any output/ to the $2 output/
_moveToOutput() {
local patt="$1"
local dstOut="$2"
echo "XXX: m2o '$1' '$2'"
local output
for output in $outputs; do
echo "XXX: output='$output'"
if [ "${output}" = "$dstOut" ]; then continue; fi
local srcPath
for srcPath in ${!output}/$patt; do
if [ ! -e "$srcPath" ]; then continue; fi
local dstPath="$dstOut${srcPath#${!output}}"
echo "moving $srcPath to $dstPath"
if [ -d "$dstPath" ] && [ -d "$srcPath" ]
then # attempt directory merge
mv -t "$dstPath" "$srcPath"/*
rmdir "$srcPath"
else # usual move
mkdir -p $(readlink -m "$dstPath/..") # create the parent for $dstPath
mv "$srcPath" "$dstPath"
fi
done
done
}
# Move documentation to the desired outputs.
_multioutDocs() { _multioutDocs() {
_moveToOutput share/man "$outputMan" echo "Looking for documentation to move between outputs"
_moveToOutput share/info "$outputInfo" _moveToOutput share/man "${!outputMan}"
_moveToOutput share/doc "$outputDoc" _moveToOutput share/info "${!outputInfo}"
_moveToOutput share/doc "${!outputDoc}"
# Remove empty share directory. # Remove empty share directory.
if [ -d "$out/share" ]; then if [ -d "$out/share" ]; then
rmdir "$out/share" 2> /dev/null || true rmdir "$out/share" 2> /dev/null || true
fi fi
} }
_moveToOutput() {
local d="$1" # Move development-only stuff to the desired outputs.
local dst="$2" _multioutDevs() {
if [ -z "$dst" -a ! -e $dst/$d ]; then return; fi if [ -z "${moveToDev-1}" ]; then return; fi;
local output echo "Looking for development-only stuff to move between outputs"
for output in $outputs; do _moveToOutput include "${!outputInclude}"
if [ "${!output}" = "$dst" ]; then continue; fi _moveToOutput lib/pkgconfig "${!outputDev}"
if [ -d "${!output}/$d" ]; then _moveToOutput "lib/*.la" "${!outputDev}"
echo "moving ${!output}/$d to $dst/$d"
mkdir -p $dst/share
mv ${!output}/$d $dst/$d
break
fi
done
} }
# Make ${!outputDev} propagate other outputs needed for development
# Note: during the build, probably only the "native" development packages are useful.
# With current cross-building setup, all packages are "native" if not cross-building.
_multioutPropagateDev() { _multioutPropagateDev() {
if [ "$outputInclude" != "$propagateIntoOutput" ]; then if [ "${!outputInclude}" != "$propagateIntoOutput" ]; then
mkdir -p "$propagateIntoOutput"/nix-support mkdir -p "$propagateIntoOutput"/nix-support
echo -n " $outputInclude" >> "$propagateIntoOutput"/nix-support/propagated-native-build-inputs echo -n " ${!outputInclude}" >> "$propagateIntoOutput"/nix-support/propagated-native-build-inputs
fi fi
if [ "$outputLib" != "$propagateIntoOutput" ]; then if [ "${!outputLib}" != "$propagateIntoOutput" ]; then
mkdir -p "$propagateIntoOutput"/nix-support mkdir -p "$propagateIntoOutput"/nix-support
echo -n " $outputLib" >> "$propagateIntoOutput"/nix-support/propagated-native-build-inputs echo -n " ${!outputLib}" >> "$propagateIntoOutput"/nix-support/propagated-native-build-inputs
fi fi
} }

View File

@ -23,10 +23,6 @@ stdenv.mkDerivation rec {
sha256 = "0pppcn73b5pwd7zdi9yfx16f5i93y18q7q4jmlkwmwrfsllqp160"; sha256 = "0pppcn73b5pwd7zdi9yfx16f5i93y18q7q4jmlkwmwrfsllqp160";
}; };
outputs = [ "dev" "out" ];
configureFlags = "--disable-static --bindir=$(dev)/bin";
patches = [ ./enable-validation.patch ] # from Gentoo patches = [ ./enable-validation.patch ] # from Gentoo
++ [ ++ [
(fetch_bohoomil "freetype-2.5.3-pkgconfig.patch" "1dpfdh8kmka3gzv14glz7l79i545zizah6wma937574v5z2iy3nn") (fetch_bohoomil "freetype-2.5.3-pkgconfig.patch" "1dpfdh8kmka3gzv14glz7l79i545zizah6wma937574v5z2iy3nn")
@ -36,12 +32,16 @@ stdenv.mkDerivation rec {
(fetch_bohoomil "infinality-2.5.3.patch" "0mxiybcb4wwbicrjiinh1b95rv543bh05sdqk1v0ipr3fxfrb47q") (fetch_bohoomil "infinality-2.5.3.patch" "0mxiybcb4wwbicrjiinh1b95rv543bh05sdqk1v0ipr3fxfrb47q")
; ;
outputs = [ "dev" "out" ];
propagatedBuildInputs = [ zlib bzip2 libpng ]; # needed when linking against freetype propagatedBuildInputs = [ zlib bzip2 libpng ]; # needed when linking against freetype
# dependence on harfbuzz is looser than the reverse dependence # dependence on harfbuzz is looser than the reverse dependence
buildInputs = [ pkgconfig which ] buildInputs = [ stdenv.hookLib.multiout pkgconfig which ]
# FreeType requires GNU Make, which is not part of stdenv on FreeBSD. # FreeType requires GNU Make, which is not part of stdenv on FreeBSD.
++ optional (!stdenv.isLinux) gnumake; ++ optional (!stdenv.isLinux) gnumake;
configureFlags = "--disable-static --bindir=$(dev)/bin";
# from Gentoo, see https://bugzilla.redhat.com/show_bug.cgi?id=506840 # from Gentoo, see https://bugzilla.redhat.com/show_bug.cgi?id=506840
NIX_CFLAGS_COMPILE = "-fno-strict-aliasing"; NIX_CFLAGS_COMPILE = "-fno-strict-aliasing";
# The asm for armel is written with the 'asm' keyword. # The asm for armel is written with the 'asm' keyword.
@ -52,12 +52,8 @@ stdenv.mkDerivation rec {
doCheck = true; doCheck = true;
# compat hacks # compat hacks
postInstall = glib.flattenInclude + '' postFixup = glib.flattenInclude + ''
ln -s . "$out"/include/freetype ln -s . "$dev"/include/freetype
mkdir $dev/lib
mv $out/lib/pkgconfig $dev/lib/
ln -s freetype2/freetype $dev/include/freetype
''; '';
crossAttrs = { crossAttrs = {

View File

@ -51,11 +51,11 @@ stdenv.mkDerivation rec {
patches = optional stdenv.isDarwin ./darwin-compilation.patch; patches = optional stdenv.isDarwin ./darwin-compilation.patch;
outputs = [ "dev" "out" "bin" ]; # ToDo: docs? #outputs = [ "dev" "out" "bin" ]; # ToDo: no idea what's wrong! docs?
setupHook = ./setup-hook.sh; #setupHook = ./setup-hook.sh;
buildInputs = [ stdenv.hookLib.multiout libelf ] buildInputs = [ /*stdenv.hookLib.multiout*/ libelf ]
++ optionals doCheck [ tzdata libxml2 desktop_file_utils shared_mime_info ]; ++ optionals doCheck [ tzdata libxml2 desktop_file_utils shared_mime_info ];
nativeBuildInputs = [ pkgconfig gettext perl python ]; nativeBuildInputs = [ pkgconfig gettext perl python ];

View File

@ -14,4 +14,4 @@ glibPreFixupPhase() {
addToSearchPath GSETTINGS_SCHEMAS_PATH "$out/share/gsettings-schemas/$name" addToSearchPath GSETTINGS_SCHEMAS_PATH "$out/share/gsettings-schemas/$name"
} }
preFixupPhases="$preFixupPhases glibPreFixupPhase" preFixupPhases+=(glibPreFixupPhase)

View File

@ -2,7 +2,7 @@
with { inherit (stdenv.lib) optional; }; with { inherit (stdenv.lib) optional; };
stdenv.mkDerivation (rec { stdenv.mkDerivation rec {
name = "gmp-5.1.3"; name = "gmp-5.1.3";
src = fetchurl { # we need to use bz2, others aren't in bootstrapping stdenv src = fetchurl { # we need to use bz2, others aren't in bootstrapping stdenv
@ -10,6 +10,9 @@ stdenv.mkDerivation (rec {
sha256 = "0q5i39pxrasgn9qdxzpfbwhh11ph80p57x6hf48m74261d97j83m"; sha256 = "0q5i39pxrasgn9qdxzpfbwhh11ph80p57x6hf48m74261d97j83m";
}; };
outputs = [ "out" "info" ];
buildInputs = [ stdenv.hookLib.multiout ];
nativeBuildInputs = [ m4 ]; nativeBuildInputs = [ m4 ];
configureFlags = configureFlags =
@ -22,6 +25,7 @@ stdenv.mkDerivation (rec {
++ optional (cxx && stdenv.isDarwin) "CPPFLAGS=-fexceptions" ++ optional (cxx && stdenv.isDarwin) "CPPFLAGS=-fexceptions"
++ optional stdenv.is64bit "--with-pic" ++ optional stdenv.is64bit "--with-pic"
; ;
dontDisableStatic = withStatic;
doCheck = true; doCheck = true;
@ -58,6 +62,4 @@ stdenv.mkDerivation (rec {
maintainers = [ maintainers.simons ]; maintainers = [ maintainers.simons ];
}; };
} }
// stdenv.lib.optionalAttrs withStatic { dontDisableStatic = true; }
)

View File

@ -10,7 +10,10 @@ stdenv.mkDerivation rec {
patches = stdenv.lib.optional (stdenv.needsPax) ./libffi-3.0.13-emutramp_pax_proc.patch; patches = stdenv.lib.optional (stdenv.needsPax) ./libffi-3.0.13-emutramp_pax_proc.patch;
buildInputs = stdenv.lib.optional doCheck dejagnu; outputs = [ "dev" "out" "doc" ];
buildInputs = [ stdenv.hookLib.multiout ]
++ stdenv.lib.optional doCheck dejagnu;
configureFlags = [ configureFlags = [
"--with-gcc-arch=generic" # no detection of -march= or -mtune= "--with-gcc-arch=generic" # no detection of -march= or -mtune=

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, nasm }: { stdenv, fetchurl, nasm, autoreconfHook }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libjpeg-turbo-1.3.1"; name = "libjpeg-turbo-1.3.1";
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
outputs = [ "dev" "out" "doc" "bin" ]; outputs = [ "dev" "out" "doc" "bin" ];
buildInputs = [ nasm ]; buildInputs = [ stdenv.hookLib.multiout autoreconfHook nasm ];
enableParallelBuilding = true; enableParallelBuilding = true;

View File

@ -18,17 +18,19 @@ in stdenv.mkDerivation rec {
url = "mirror://sourceforge/libpng/libpng-${version}.tar.xz"; url = "mirror://sourceforge/libpng/libpng-${version}.tar.xz";
inherit sha256; inherit sha256;
}; };
postPatch = whenPatched "gunzip < ${patch_src} | patch -Np1";
outputs = [ "dev" "out" "man" ]; outputs = [ "dev" "out" "man" ];
buildInputs = [ stdenv.hookLib.multiout ];
preConfigure = "export bin=$dev";
postPatch = whenPatched "gunzip < ${patch_src} | patch -Np1";
propagatedBuildInputs = [ zlib ]; propagatedBuildInputs = [ zlib ];
preConfigure = "export bin=$dev";
doCheck = true; doCheck = true;
postInstall = ''mv "$out/bin" "$dev/bin"'';
passthru = { inherit zlib; }; passthru = { inherit zlib; };
meta = with stdenv.lib; { meta = with stdenv.lib; {

View File

@ -19,8 +19,6 @@ stdenv.mkDerivation rec {
sha256 = "0wj8d1iwk9vnpax2h29xqc2hwknxg3s0ay2d5pxkg59ihbifn6pa"; sha256 = "0wj8d1iwk9vnpax2h29xqc2hwknxg3s0ay2d5pxkg59ihbifn6pa";
}; };
outputs = [ "dev" "out" "bin" "doc" ];
patchPhase = '' patchPhase = ''
for p in ${patchDir}/*-{2013-4244,2012-4447,2012-4564,2013-1960,2013-1961,libjpeg-turbo}.patch; do for p in ${patchDir}/*-{2013-4244,2012-4447,2012-4564,2013-1960,2013-1961,libjpeg-turbo}.patch; do
patch -p1 < "$p" patch -p1 < "$p"
@ -34,6 +32,9 @@ stdenv.mkDerivation rec {
patch -p0 < ${patchDir}/${if stdenv.isDarwin then "tiff-4.0.3" else "*"}-tiff2pdf-colors.patch patch -p0 < ${patchDir}/${if stdenv.isDarwin then "tiff-4.0.3" else "*"}-tiff2pdf-colors.patch
''; # ^ sh on darwin seems not to expand globs in redirects, and I don't want to rebuild all again elsewhere ''; # ^ sh on darwin seems not to expand globs in redirects, and I don't want to rebuild all again elsewhere
outputs = [ "dev" "out" "bin" "doc" ];
buildInputs = [ stdenv.hookLib.multiout ];
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs = [ zlib libjpeg xz ]; #TODO: opengl support (bogus configure detection) propagatedBuildInputs = [ zlib libjpeg xz ]; #TODO: opengl support (bogus configure detection)

View File

@ -11,12 +11,12 @@ stdenv.mkDerivation {
sha256 = "0wpk87jnhngcl3nc5i39flkycx1sjzilx8jjx4zc4p8r55ylj19g"; sha256 = "0wpk87jnhngcl3nc5i39flkycx1sjzilx8jjx4zc4p8r55ylj19g";
}; };
buildInputs = [ pkgconfig ]; outputs = [ "dev" "out" "doc" ];
buildInputs = [ stdenv.hookLib.multiout pkgconfig ];
propagatedBuildInputs = [ libogg ]; propagatedBuildInputs = [ libogg ];
outputs = [ "dev" "out" "doc" ];
doCheck = true; doCheck = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {

View File

@ -8,7 +8,9 @@ stdenv.mkDerivation rec {
sha256 = "0sqvpfkzamxdr87anzakf9dhkfh15lfmm5bsqajk02h1mxh3zivr"; sha256 = "0sqvpfkzamxdr87anzakf9dhkfh15lfmm5bsqajk02h1mxh3zivr";
}; };
buildInputs = [ gmp ]; outputs = [ "dev" "out" "doc" ];
buildInputs = [ stdenv.hookLib.multiout gmp ];
configureFlags = configureFlags =
/* Work around a FreeBSD bug that otherwise leads to segfaults in the test suite: /* Work around a FreeBSD bug that otherwise leads to segfaults in the test suite:

View File

@ -49,10 +49,10 @@ stdenv.mkDerivation {
patches = patchesCross false; patches = patchesCross false;
outputs = [ "dev" "out" "man" "bin" ]; outputs = [ "dev" "out" "man" "bin" ];
setOutputFlags = false;
setOutputFlags = false; # ToDo: strange? buildInputs = [ stdenv.hookLib.multiout ]
++ stdenv.lib.optional withCryptodev cryptodevHeaders;
buildInputs = stdenv.lib.optional withCryptodev cryptodevHeaders;
nativeBuildInputs = [ perl ]; nativeBuildInputs = [ perl ];

View File

@ -13,15 +13,22 @@ stdenv.mkDerivation rec {
sha256 = "039agw5rqvqny92cpkrfn243x2gd4xn13hs3xi6isk55d2vqqr9n"; sha256 = "039agw5rqvqny92cpkrfn243x2gd4xn13hs3xi6isk55d2vqqr9n";
}; };
configureFlags = if static then "" else "--shared"; outputs = [ "dev" "out" "static" "man" ];
buildInputs = [ stdenv.hookLib.multiout ];
setOutputFlags = false;
configureFlags = stdenv.lib.optional (!static) "--shared";
preConfigure = '' preConfigure = ''
if test -n "$crossConfig"; then if test -n "$crossConfig"; then
export CC=$crossConfig-gcc export CC=$crossConfig-gcc
configureFlags=${if static then "" else "--shared"}
fi fi
''; '';
postInstall = ''
_moveToOutput lib/libz.a "$static"
'';
# As zlib takes part in the stdenv building, we don't want references # As zlib takes part in the stdenv building, we don't want references
# to the bootstrap-tools libgcc (as uses to happen on arm/mips) # to the bootstrap-tools libgcc (as uses to happen on arm/mips)
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (!stdenv.isDarwin) "-static-libgcc"; NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (!stdenv.isDarwin) "-static-libgcc";

View File

@ -34,8 +34,10 @@ stdenv.mkDerivation rec {
./pt-pax-flags-20121023.patch ./pt-pax-flags-20121023.patch
]; ];
outputs = [ "dev" "out" "info" ];
buildInputs = buildInputs =
[ zlib ] [ stdenv.hookLib.multiout zlib ]
++ optional gold bison; ++ optional gold bison;
inherit noSysDirs; inherit noSysDirs;
@ -66,6 +68,8 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
postFixup = "ln -s $out/bin $dev/bin"; # tools needed for development
meta = { meta = {
description = "GNU Binutils, tools for manipulating binaries (linker, assembler, etc.)"; description = "GNU Binutils, tools for manipulating binaries (linker, assembler, etc.)";

View File

@ -8,9 +8,10 @@ stdenv.mkDerivation rec {
sha256 = "0649qfpzkswgcj9vqkkr9rn4nlcx80faxpyqscy2k1x9c94f93dk"; sha256 = "0649qfpzkswgcj9vqkkr9rn4nlcx80faxpyqscy2k1x9c94f93dk";
}; };
nativeBuildInputs = [ lzma m4 perl ];
outputs = [ "out" "lib" ]; outputs = [ "out" "lib" ];
buildInputs = [ stdenv.hookLib.multiout ];
nativeBuildInputs = [ lzma m4 perl ];
# Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the # Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
# "fixed" path in generated files! # "fixed" path in generated files!

View File

@ -1,22 +1,27 @@
{stdenv, fetchurl, automake, vanilla ? false}: { stdenv, fetchurl, automake, vanilla ? false }:
stdenv.mkDerivation (rec { let
inherit (stdenv.lib) optional;
in
stdenv.mkDerivation rec {
name = "pkg-config-0.28"; name = "pkg-config-0.28";
setupHook = ./setup-hook.sh; setupHook = ./setup-hook.sh;
src = fetchurl { src = fetchurl {
url = "http://pkgconfig.freedesktop.org/releases/${name}.tar.gz"; url = "http://pkgconfig.freedesktop.org/releases/${name}.tar.gz";
sha256 = "0igqq5m204w71m11y0nipbdf5apx87hwfll6axs12hn4dqfb6vkb"; sha256 = "0igqq5m204w71m11y0nipbdf5apx87hwfll6axs12hn4dqfb6vkb";
}; };
# Process Requires.private properly, see
# http://bugs.freedesktop.org/show_bug.cgi?id=4738.
patches = optional (!vanilla) ./requires-private.patch;
preConfigure = stdenv.lib.optionalString (stdenv.system == "mips64el-linux")
''cp -v ${automake}/share/automake*/config.{sub,guess} .'';
configureFlags = [ "--with-internal-glib" ]; configureFlags = [ "--with-internal-glib" ];
patches = if vanilla then [] else [ postInstall = ''rm "$out"/bin/*-pkg-config''; # clean the duplicate file
# Process Requires.private properly, see
# http://bugs.freedesktop.org/show_bug.cgi?id=4738.
./requires-private.patch
];
meta = { meta = {
description = "A tool that allows packages to find out information about other packages"; description = "A tool that allows packages to find out information about other packages";
@ -24,9 +29,5 @@ stdenv.mkDerivation (rec {
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.all;
}; };
} // (if stdenv.system == "mips64el-linux" then }
{
preConfigure = ''
cp -v ${automake}/share/automake*/config.{sub,guess} .
'';
} else {}))

View File

@ -12,6 +12,7 @@ stdenv.mkDerivation rec {
}; };
outputs = [ "dev" "out" ]; outputs = [ "dev" "out" ];
buildInputs = [ stdenv.hookLib.multiout ];
nativeBuildInputs = [ perl ]; nativeBuildInputs = [ perl ];
propagatedBuildInputs = [ attr ]; propagatedBuildInputs = [ attr ];
@ -20,14 +21,10 @@ stdenv.mkDerivation rec {
makeFlags = "lib=lib prefix=$(out)"; makeFlags = "lib=lib prefix=$(out)";
passthru = { postInstall = ''
postinst = n : '' mkdir -p "$dev/share/doc/${name}"
mkdir -p $out/share/doc/${n} cp ../License "$dev/share/doc/${name}/License"
cp ../License $out/share/doc/${n}/License '';
'';
};
postInstall = passthru.postinst name;
meta = { meta = {
description = "Library for working with POSIX capabilities"; description = "Library for working with POSIX capabilities";

View File

@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ flex ]; nativeBuildInputs = [ flex ];
buildInputs = [ cracklib ]; buildInputs = [ stdenv.hookLib.multiout cracklib ];
enableParallelBuilding = true; enableParallelBuilding = true;

View File

@ -606,7 +606,6 @@ let
url = mirror://xorg/individual/lib/libX11-1.6.2.tar.bz2; url = mirror://xorg/individual/lib/libX11-1.6.2.tar.bz2;
sha256 = "05mx0s0vqzds3qjc1gmjr2s6x2ll37z4lfhgm7p2w7936zl2g81a"; sha256 = "05mx0s0vqzds3qjc1gmjr2s6x2ll37z4lfhgm7p2w7936zl2g81a";
}; };
outputs = [ "dev" "out" "man" ];
buildInputs = [pkgconfig inputproto kbproto libxcb xextproto xf86bigfontproto xproto xtrans ]; buildInputs = [pkgconfig inputproto kbproto libxcb xextproto xf86bigfontproto xproto xtrans ];
})) // {inherit inputproto kbproto libxcb xextproto xf86bigfontproto xproto xtrans ;}; })) // {inherit inputproto kbproto libxcb xextproto xf86bigfontproto xproto xtrans ;};
@ -627,7 +626,6 @@ let
url = mirror://xorg/individual/lib/libXau-1.0.8.tar.bz2; url = mirror://xorg/individual/lib/libXau-1.0.8.tar.bz2;
sha256 = "1wm4pv12f36cwzhldpp7vy3lhm3xdcnp4f184xkxsp7b18r7gm7x"; sha256 = "1wm4pv12f36cwzhldpp7vy3lhm3xdcnp4f184xkxsp7b18r7gm7x";
}; };
outputs = [ "dev" "out" "man" ];
buildInputs = [pkgconfig xproto ]; buildInputs = [pkgconfig xproto ];
})) // {inherit xproto ;}; })) // {inherit xproto ;};
@ -648,7 +646,6 @@ let
url = mirror://xorg/individual/lib/libXcomposite-0.4.4.tar.bz2; url = mirror://xorg/individual/lib/libXcomposite-0.4.4.tar.bz2;
sha256 = "0y21nfpa5s8qmx0srdlilyndas3sgl0c6rc26d5fx2vx436m1qpd"; sha256 = "0y21nfpa5s8qmx0srdlilyndas3sgl0c6rc26d5fx2vx436m1qpd";
}; };
outputs = [ "dev" "out" "man" ];
buildInputs = [pkgconfig compositeproto libX11 libXfixes xproto ]; buildInputs = [pkgconfig compositeproto libX11 libXfixes xproto ];
})) // {inherit compositeproto libX11 libXfixes xproto ;}; })) // {inherit compositeproto libX11 libXfixes xproto ;};
@ -659,7 +656,6 @@ let
url = mirror://xorg/individual/lib/libXcursor-1.1.14.tar.bz2; url = mirror://xorg/individual/lib/libXcursor-1.1.14.tar.bz2;
sha256 = "1prkdicl5y5yx32h1azh6gjfbijvjp415javv8dsakd13jrarilv"; sha256 = "1prkdicl5y5yx32h1azh6gjfbijvjp415javv8dsakd13jrarilv";
}; };
outputs = [ "dev" "out" "man" ];
buildInputs = [pkgconfig fixesproto libX11 libXfixes xproto libXrender ]; buildInputs = [pkgconfig fixesproto libX11 libXfixes xproto libXrender ];
})) // {inherit fixesproto libX11 libXfixes xproto libXrender ;}; })) // {inherit fixesproto libX11 libXfixes xproto libXrender ;};
@ -670,7 +666,6 @@ let
url = mirror://xorg/individual/lib/libXdamage-1.1.4.tar.bz2; url = mirror://xorg/individual/lib/libXdamage-1.1.4.tar.bz2;
sha256 = "1bamagq7g6s0d23l8rb3nppj8ifqj05f7z9bhbs4fdg8az3ffgvw"; sha256 = "1bamagq7g6s0d23l8rb3nppj8ifqj05f7z9bhbs4fdg8az3ffgvw";
}; };
outputs = [ "dev" "out" ];
buildInputs = [pkgconfig damageproto fixesproto libX11 xextproto libXfixes xproto ]; buildInputs = [pkgconfig damageproto fixesproto libX11 xextproto libXfixes xproto ];
})) // {inherit damageproto fixesproto libX11 xextproto libXfixes xproto ;}; })) // {inherit damageproto fixesproto libX11 xextproto libXfixes xproto ;};
@ -681,7 +676,6 @@ let
url = mirror://xorg/X11R7.7/src/everything/libXdmcp-1.1.1.tar.bz2; url = mirror://xorg/X11R7.7/src/everything/libXdmcp-1.1.1.tar.bz2;
sha256 = "13highx4xpgkiwykpcl7z2laslrjc4pzi4h617ny9p7r6116vkls"; sha256 = "13highx4xpgkiwykpcl7z2laslrjc4pzi4h617ny9p7r6116vkls";
}; };
outputs = [ "dev" "out" "doc" ];
buildInputs = [pkgconfig xproto ]; buildInputs = [pkgconfig xproto ];
})) // {inherit xproto ;}; })) // {inherit xproto ;};
@ -692,7 +686,6 @@ let
url = mirror://xorg/individual/lib/libXext-1.3.3.tar.bz2; url = mirror://xorg/individual/lib/libXext-1.3.3.tar.bz2;
sha256 = "0dbfn5bznnrhqzvkrcmw4c44yvvpwdcsrvzxf4rk27r36b9x865m"; sha256 = "0dbfn5bznnrhqzvkrcmw4c44yvvpwdcsrvzxf4rk27r36b9x865m";
}; };
outputs = [ "dev" "out" "man" "doc" ];
buildInputs = [pkgconfig libX11 xextproto xproto ]; buildInputs = [pkgconfig libX11 xextproto xproto ];
})) // {inherit libX11 xextproto xproto ;}; })) // {inherit libX11 xextproto xproto ;};
@ -703,7 +696,6 @@ let
url = mirror://xorg/individual/lib/libXfixes-5.0.1.tar.bz2; url = mirror://xorg/individual/lib/libXfixes-5.0.1.tar.bz2;
sha256 = "0rs7qgzr6dpr62db7sd91c1b47hzhzfr010qwnpcm8sg122w1gk3"; sha256 = "0rs7qgzr6dpr62db7sd91c1b47hzhzfr010qwnpcm8sg122w1gk3";
}; };
outputs = [ "dev" "out" "man" ];
buildInputs = [pkgconfig fixesproto libX11 xextproto xproto ]; buildInputs = [pkgconfig fixesproto libX11 xextproto xproto ];
})) // {inherit fixesproto libX11 xextproto xproto ;}; })) // {inherit fixesproto libX11 xextproto xproto ;};
@ -724,7 +716,6 @@ let
url = mirror://xorg/individual/lib/libXft-2.3.2.tar.bz2; url = mirror://xorg/individual/lib/libXft-2.3.2.tar.bz2;
sha256 = "0k6wzi5rzs0d0n338ms8n8lfyhq914hw4yl2j7553wqxfqjci8zm"; sha256 = "0k6wzi5rzs0d0n338ms8n8lfyhq914hw4yl2j7553wqxfqjci8zm";
}; };
outputs = [ "dev" "out" "man" ];
buildInputs = [pkgconfig fontconfig freetype libX11 xproto libXrender ]; buildInputs = [pkgconfig fontconfig freetype libX11 xproto libXrender ];
})) // {inherit fontconfig freetype libX11 xproto libXrender ;}; })) // {inherit fontconfig freetype libX11 xproto libXrender ;};
@ -735,7 +726,6 @@ let
url = mirror://xorg/individual/lib/libXi-1.7.4.tar.bz2; url = mirror://xorg/individual/lib/libXi-1.7.4.tar.bz2;
sha256 = "0i12lj973grlp9fa79v0vh9cahk3nf9csdjnf81iip0qcrlc5zrc"; sha256 = "0i12lj973grlp9fa79v0vh9cahk3nf9csdjnf81iip0qcrlc5zrc";
}; };
outputs = [ "dev" "out" "man" "doc" ];
buildInputs = [pkgconfig inputproto libX11 libXext xextproto libXfixes xproto ]; buildInputs = [pkgconfig inputproto libX11 libXext xextproto libXfixes xproto ];
})) // {inherit inputproto libX11 libXext xextproto libXfixes xproto ;}; })) // {inherit inputproto libX11 libXext xextproto libXfixes xproto ;};
@ -746,7 +736,6 @@ let
url = mirror://xorg/individual/lib/libXinerama-1.1.3.tar.bz2; url = mirror://xorg/individual/lib/libXinerama-1.1.3.tar.bz2;
sha256 = "1qlqfvzw45gdzk9xirgwlp2qgj0hbsyiqj8yh8zml2bk2ygnjibs"; sha256 = "1qlqfvzw45gdzk9xirgwlp2qgj0hbsyiqj8yh8zml2bk2ygnjibs";
}; };
outputs = [ "dev" "out" "man" ];
buildInputs = [pkgconfig libX11 libXext xextproto xineramaproto ]; buildInputs = [pkgconfig libX11 libXext xextproto xineramaproto ];
})) // {inherit libX11 libXext xextproto xineramaproto ;}; })) // {inherit libX11 libXext xextproto xineramaproto ;};
@ -787,7 +776,6 @@ let
url = mirror://xorg/individual/lib/libXrandr-1.4.2.tar.bz2; url = mirror://xorg/individual/lib/libXrandr-1.4.2.tar.bz2;
sha256 = "1b95p3l84ppv6j7dbbmg0zrz6k8xdwvnag1l6ajm3gk9qwdb79ya"; sha256 = "1b95p3l84ppv6j7dbbmg0zrz6k8xdwvnag1l6ajm3gk9qwdb79ya";
}; };
outputs = [ "dev" "out" "man" ];
buildInputs = [pkgconfig randrproto renderproto libX11 libXext xextproto xproto libXrender ]; buildInputs = [pkgconfig randrproto renderproto libX11 libXext xextproto xproto libXrender ];
})) // {inherit randrproto renderproto libX11 libXext xextproto xproto libXrender ;}; })) // {inherit randrproto renderproto libX11 libXext xextproto xproto libXrender ;};
@ -798,7 +786,6 @@ let
url = mirror://xorg/individual/lib/libXrender-0.9.8.tar.bz2; url = mirror://xorg/individual/lib/libXrender-0.9.8.tar.bz2;
sha256 = "0qpwyjhbpp734vnhca992pjh4w7ijslidkzx1pcwbbk000pv050x"; sha256 = "0qpwyjhbpp734vnhca992pjh4w7ijslidkzx1pcwbbk000pv050x";
}; };
outputs = [ "dev" "out" "doc" ];
buildInputs = [pkgconfig renderproto libX11 xproto ]; buildInputs = [pkgconfig renderproto libX11 xproto ];
})) // {inherit renderproto libX11 xproto ;}; })) // {inherit renderproto libX11 xproto ;};
@ -879,7 +866,6 @@ let
url = mirror://xorg/individual/lib/libXxf86vm-1.1.3.tar.bz2; url = mirror://xorg/individual/lib/libXxf86vm-1.1.3.tar.bz2;
sha256 = "1f1pxj018nk7ybxv58jmn5y8gm2288p4q3l2dng9n1p25v1qcpns"; sha256 = "1f1pxj018nk7ybxv58jmn5y8gm2288p4q3l2dng9n1p25v1qcpns";
}; };
outputs = [ "dev" "out" "man" ];
buildInputs = [pkgconfig libX11 libXext xextproto xf86vidmodeproto xproto ]; buildInputs = [pkgconfig libX11 libXext xextproto xf86vidmodeproto xproto ];
})) // {inherit libX11 libXext xextproto xf86vidmodeproto xproto ;}; })) // {inherit libX11 libXext xextproto xf86vidmodeproto xproto ;};
@ -930,7 +916,6 @@ let
url = http://xcb.freedesktop.org/dist/libxcb-1.11.tar.bz2; url = http://xcb.freedesktop.org/dist/libxcb-1.11.tar.bz2;
sha256 = "1xqgc81krx14f2c8yl5chzg5g2l26mhm2rwffy8dx7jv0iq5sqq3"; sha256 = "1xqgc81krx14f2c8yl5chzg5g2l26mhm2rwffy8dx7jv0iq5sqq3";
}; };
outputs = [ "dev" "out" "doc" "man" ];
buildInputs = [pkgconfig libxslt libpthreadstubs python libXau xcbproto libXdmcp ]; buildInputs = [pkgconfig libxslt libpthreadstubs python libXau xcbproto libXdmcp ];
})) // {inherit libxslt libpthreadstubs python libXau xcbproto libXdmcp ;}; })) // {inherit libxslt libpthreadstubs python libXau xcbproto libXdmcp ;};

View File

@ -56,8 +56,9 @@ in
}; };
libxcb = attrs : attrs // { libxcb = attrs : attrs // {
nativeBuildInputs = [ args.python ]; nativeBuildInputs = [ stdenv.hookLib.multiout args.python ];
configureFlags = "--enable-xkb"; configureFlags = "--enable-xkb";
outputs = [ "dev" "out" "doc" "man" ];
}; };
xcbproto = attrs : attrs // { xcbproto = attrs : attrs // {
@ -69,6 +70,8 @@ in
}; };
libX11 = attrs: attrs // { libX11 = attrs: attrs // {
outputs = [ "dev" "out" "man" ];
buildInputs = [ stdenv.hookLib.multiout ] ++ attrs.buildInputs;
preConfigure = setMalloc0ReturnsNullCrossCompiling; preConfigure = setMalloc0ReturnsNullCrossCompiling;
postInstall = postInstall =
'' ''
@ -77,6 +80,16 @@ in
''; '';
}; };
libXau = attrs: attrs // {
outputs = [ "dev" "out" "man" ];
buildInputs = [ stdenv.hookLib.multiout ] ++ attrs.buildInputs;
};
libXdmcp = attrs: attrs // {
outputs = [ "dev" "out" "doc" ];
buildInputs = [ stdenv.hookLib.multiout ] ++ attrs.buildInputs;
};
libXfont = attrs: attrs // { libXfont = attrs: attrs // {
propagatedBuildInputs = [ args.freetype ]; # propagate link reqs. like bzip2 propagatedBuildInputs = [ args.freetype ]; # propagate link reqs. like bzip2
# prevents "misaligned_stack_error_entering_dyld_stub_binder" # prevents "misaligned_stack_error_entering_dyld_stub_binder"
@ -87,14 +100,11 @@ in
libXxf86vm = attrs: attrs // { libXxf86vm = attrs: attrs // {
outputs = [ "dev" "out" "man" ];
buildInputs = [ stdenv.hookLib.multiout ] ++ attrs.buildInputs;
preConfigure = setMalloc0ReturnsNullCrossCompiling; preConfigure = setMalloc0ReturnsNullCrossCompiling;
}; };
libXrandr = attrs: attrs // {
preConfigure = setMalloc0ReturnsNullCrossCompiling;
propagatedBuildInputs = [xorg.libXrender];
};
# Propagate some build inputs because of header file dependencies. # Propagate some build inputs because of header file dependencies.
# Note: most of these are in Requires.private, so maybe builder.sh # Note: most of these are in Requires.private, so maybe builder.sh
# should propagate them automatically. # should propagate them automatically.
@ -114,6 +124,8 @@ in
}; };
libXcomposite = attrs: attrs // { libXcomposite = attrs: attrs // {
outputs = [ "dev" "out" "man" ];
buildInputs = [ stdenv.hookLib.multiout ] ++ attrs.buildInputs;
propagatedBuildInputs = [ xorg.libXfixes ]; propagatedBuildInputs = [ xorg.libXfixes ];
}; };
@ -121,7 +133,19 @@ in
propagatedBuildInputs = [ xorg.libXmu ]; propagatedBuildInputs = [ xorg.libXmu ];
}; };
libXcursor = attrs: attrs // {
outputs = [ "dev" "out" "man" ];
buildInputs = [ stdenv.hookLib.multiout ] ++ attrs.buildInputs;
};
libXdamage = attrs: attrs // {
outputs = [ "dev" "out" ];
buildInputs = [ stdenv.hookLib.multiout ] ++ attrs.buildInputs;
};
libXft = attrs: attrs // { libXft = attrs: attrs // {
outputs = [ "dev" "out" "man" ];
buildInputs = [ stdenv.hookLib.multiout ] ++ attrs.buildInputs;
propagatedBuildInputs = [ xorg.libXrender args.freetype args.fontconfig ]; propagatedBuildInputs = [ xorg.libXrender args.freetype args.fontconfig ];
preConfigure = setMalloc0ReturnsNullCrossCompiling; preConfigure = setMalloc0ReturnsNullCrossCompiling;
# the include files need ft2build.h, and Requires.private isn't enough for us # the include files need ft2build.h, and Requires.private isn't enough for us
@ -131,15 +155,42 @@ in
}; };
libXext = attrs: attrs // { libXext = attrs: attrs // {
outputs = [ "dev" "out" "man" "doc" ];
buildInputs = [ stdenv.hookLib.multiout ] ++ attrs.buildInputs;
propagatedBuildInputs = [ xorg.xproto xorg.libXau ]; propagatedBuildInputs = [ xorg.xproto xorg.libXau ];
preConfigure = setMalloc0ReturnsNullCrossCompiling; preConfigure = setMalloc0ReturnsNullCrossCompiling;
}; };
libXfixes = attrs: attrs // {
outputs = [ "dev" "out" "man" ];
buildInputs = [ stdenv.hookLib.multiout ] ++ attrs.buildInputs;
};
libXi = attrs: attrs // {
outputs = [ "dev" "out" "man" "doc" ];
buildInputs = [ stdenv.hookLib.multiout ] ++ attrs.buildInputs;
};
libXinerama = attrs: attrs // {
outputs = [ "dev" "out" "man" ];
buildInputs = [ stdenv.hookLib.multiout ] ++ attrs.buildInputs;
};
libXrandr = attrs: attrs // {
outputs = [ "dev" "out" "man" ];
buildInputs = [ stdenv.hookLib.multiout ] ++ attrs.buildInputs;
preConfigure = setMalloc0ReturnsNullCrossCompiling;
propagatedBuildInputs = [xorg.libXrender];
};
libSM = attrs: attrs libSM = attrs: attrs
// { propagatedBuildInputs = [ xorg.libICE ]; }; // { propagatedBuildInputs = [ xorg.libICE ]; };
libXrender = attrs: attrs libXrender = attrs: attrs // {
// { preConfigure = setMalloc0ReturnsNullCrossCompiling; }; outputs = [ "dev" "out" "doc" ];
buildInputs = [ stdenv.hookLib.multiout ] ++ attrs.buildInputs;
preConfigure = setMalloc0ReturnsNullCrossCompiling;
};
libXvMC = attrs: attrs libXvMC = attrs: attrs
// { buildInputs = attrs.buildInputs ++ [xorg.renderproto]; }; // { buildInputs = attrs.buildInputs ++ [xorg.renderproto]; };

View File

@ -55,7 +55,11 @@ stdenv.mkDerivation rec {
postInstall = '' postInstall = ''
# Add an `sh' -> `bash' symlink. # Add an `sh' -> `bash' symlink.
ln -s bash "$out/bin/sh" ln -s bash "$out/bin/sh"
''; ''
# most space is taken by locale data
+ stdenv.lib.optionalString (!interactive) ''
rm -r "$out/share"
'';
meta = { meta = {
homepage = http://www.gnu.org/software/bash/; homepage = http://www.gnu.org/software/bash/;

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl }: { stdenv, fetchurl, acl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "gnutar-${version}"; name = "gnutar-${version}";
@ -9,6 +9,9 @@ stdenv.mkDerivation rec {
sha256 = "1iip0fk0wqhxb0jcwphz43r4fxkx1y7mznnhmlvr618jhp7b63wv"; sha256 = "1iip0fk0wqhxb0jcwphz43r4fxkx1y7mznnhmlvr618jhp7b63wv";
}; };
outputs = [ "out" "info" ];
buildInputs = [ stdenv.hookLib.multiout acl ];
# May have some issues with root compilation because the bootstrap tool # May have some issues with root compilation because the bootstrap tool
# cannot be used as a login shell for now. # cannot be used as a login shell for now.
FORCE_UNSAFE_CONFIGURE = stdenv.lib.optionalString (stdenv.system == "armv7l-linux" || stdenv.isSunOS) "1"; FORCE_UNSAFE_CONFIGURE = stdenv.lib.optionalString (stdenv.system == "armv7l-linux" || stdenv.isSunOS) "1";

View File

@ -14,7 +14,10 @@ stdenv.mkDerivation rec {
doCheck = true; doCheck = true;
# In stdenv-linux, prevent a dependency on bootstrap-tools. # In stdenv-linux, prevent a dependency on bootstrap-tools.
preHook = "unset CONFIG_SHELL"; # The preHook hack no longer worked, no idea why.
postFixup = ''
sed '1s:#!${stdenv.shell}:#!/usr/bin/env sh:' -i "$bin"/bin/*
'';
meta = { meta = {
homepage = http://tukaani.org/xz/; homepage = http://tukaani.org/xz/;

View File

@ -20,8 +20,11 @@ let
patches = [ ./help2man.patch ]; patches = [ ./help2man.patch ];
outputs = [ "out" "info" ];
nativeBuildInputs = [ perl ]; nativeBuildInputs = [ perl ];
buildInputs = [ gmp ] buildInputs = [ gmp ]
++ [ stdenv.hookLib.multiout ]
++ optional aclSupport acl ++ optional aclSupport acl
++ optionals selinuxSupport [ libselinux libsepol ]; ++ optionals selinuxSupport [ libselinux libsepol ];

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl, coreutils}: { stdenv, fetchurl, coreutils }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "findutils-4.4.2"; name = "findutils-4.4.2";
@ -12,6 +12,9 @@ stdenv.mkDerivation rec {
patches = [ ./findutils-path.patch ./change_echo_path.patch ]; patches = [ ./findutils-path.patch ./change_echo_path.patch ];
outputs = [ "out" "info" ];
buildInputs = [ stdenv.hookLib.multiout ];
doCheck = true; doCheck = true;
crossAttrs = { crossAttrs = {

View File

@ -8,6 +8,9 @@ stdenv.mkDerivation rec {
sha256 = "1761vymxbp4wb5rzjvabhdkskk95pghnn67464byvzb5mfl8jpm2"; sha256 = "1761vymxbp4wb5rzjvabhdkskk95pghnn67464byvzb5mfl8jpm2";
}; };
outputs = [ "out" "info" ];
buildInputs = [ stdenv.hookLib.multiout ];
/* If no explicit coreutils is given, use the one from stdenv. */ /* If no explicit coreutils is given, use the one from stdenv. */
nativeBuildInputs = [ coreutils ]; nativeBuildInputs = [ coreutils ];

View File

@ -1,5 +1,8 @@
{ stdenv, fetchurl, libsigsegv, readline, readlineSupport ? false }: { stdenv, fetchurl, libsigsegv, readline, interactive ? false }:
let
inherit (stdenv.lib) optional;
in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "gawk-4.1.0"; name = "gawk-4.1.0";
@ -8,15 +11,17 @@ stdenv.mkDerivation rec {
sha256 = "0hin2hswbbd6kd6i4zzvgciwpl5fba8d2s524z8y5qagyz3x010q"; sha256 = "0hin2hswbbd6kd6i4zzvgciwpl5fba8d2s524z8y5qagyz3x010q";
}; };
doCheck = !stdenv.isCygwin; # XXX: `test-dup2' segfaults on Cygwin 6.1 # When we do build separate interactive version, it makes sense to always include docs.
#outputs = stdenv.lib.optionals (!interactive) [ "out" "doc" ]; #ToDo
buildInputs = [ libsigsegv ] buildInputs = [ libsigsegv ]
++ stdenv.lib.optional readlineSupport readline; ++ optional (!interactive) stdenv.hookLib.multiout
++ optional interactive readline;
configureFlags = [ "--with-libsigsegv-prefix=${libsigsegv}" ] configureFlags = [ "--with-libsigsegv-prefix=${libsigsegv}" ]
++ stdenv.lib.optional readlineSupport "--with-readline=${readline}" ++ [(if interactive then "--with-readline=${readline}" else "--without-readline")];
# only darwin where reported, seems OK on non-chrooted Fedora (don't rebuild stdenv)
++ stdenv.lib.optional (!readlineSupport && stdenv.isDarwin) "--without-readline"; doCheck = !stdenv.isCygwin; # XXX: `test-dup2' segfaults on Cygwin 6.1
postInstall = "rm $out/bin/gawk-*"; postInstall = "rm $out/bin/gawk-*";

View File

@ -10,7 +10,9 @@ stdenv.mkDerivation {
sha256 = "1qbjb1l7f9blckc5pqy8jlf6482hpx4awn2acmhyf5mv9wfq03p7"; sha256 = "1qbjb1l7f9blckc5pqy8jlf6482hpx4awn2acmhyf5mv9wfq03p7";
}; };
buildInputs = [ pcre ] #outputs = [ "out" "doc" ]; ToDo
buildInputs = [ stdenv.hookLib.multiout pcre ]
++ stdenv.lib.optional (libiconv != null) libiconv; ++ stdenv.lib.optional (libiconv != null) libiconv;
patches = [ ./test-localeconv.patch ]; patches = [ ./test-localeconv.patch ];

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl}: { stdenv, fetchurl }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "gnused-4.2.2"; name = "gnused-4.2.2";
@ -8,6 +8,9 @@ stdenv.mkDerivation {
sha256 = "f048d1838da284c8bc9753e4506b85a1e0cc1ea8999d36f6995bcb9460cddbd7"; sha256 = "f048d1838da284c8bc9753e4506b85a1e0cc1ea8999d36f6995bcb9460cddbd7";
}; };
outputs = [ "out" "info" ];
buildInputs = [ stdenv.hookLib.multiout ];
meta = { meta = {
homepage = http://www.gnu.org/software/sed/; homepage = http://www.gnu.org/software/sed/;
description = "GNU sed, a batch stream editor"; description = "GNU sed, a batch stream editor";

View File

@ -2771,7 +2771,7 @@ let
inherit noSysDirs; inherit noSysDirs;
# PGO seems to speed up compilation by gcc by ~10%, see #445 discussion # PGO seems to speed up compilation by gcc by ~10%, see #445 discussion
profiledCompiler = with stdenv; (!isDarwin && (isi686 || isx86_64)); profiledCompiler = false; #for now. with stdenv; (!isDarwin && (isi686 || isx86_64));
# When building `gcc.crossDrv' (a "Canadian cross", with host == target # When building `gcc.crossDrv' (a "Canadian cross", with host == target
# and host != build), `cross' must be null but the cross-libc must still # and host != build), `cross' must be null but the cross-libc must still