65221567c1
This prevents failures like "libgcc_s.so.1 must be installed for pthread_cancel to work" that occur because Glibc assumes libgcc_s.so.1 to be in Glibc's libdir. This solution is pretty hacky, because the libgcc_s.so.1 from bootstrap-tools might be too old. So if we update GCC, programs might end up using an outdated libgcc_s.so.1. Ideally, we would build libgcc_s.so.1 *before* Glibc, which might not be impossible... Fixes #3548.
26 lines
620 B
Nix
26 lines
620 B
Nix
{ stdenv, fetchgit, zlib, xz }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "squashfs-4.4dev";
|
|
|
|
src = fetchgit {
|
|
url = https://github.com/plougher/squashfs-tools.git;
|
|
sha256 = "059pa2shdysr3zfmwrhq28s12zbi5nyzbpzyaf5lmspgfh1493ks";
|
|
rev = "9c1db6d13a51a2e009f0027ef336ce03624eac0d";
|
|
};
|
|
|
|
buildInputs = [ zlib xz ];
|
|
|
|
preBuild = "cd squashfs-tools";
|
|
|
|
installFlags = "INSTALL_DIR=\${out}/bin";
|
|
|
|
makeFlags = "XZ_SUPPORT=1";
|
|
|
|
meta = {
|
|
homepage = http://squashfs.sourceforge.net/;
|
|
description = "Tool for creating and unpacking squashfs filesystems";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|