nixpkgs/pkgs/development/libraries/stlport/default.nix
Vladimír Čunát 75d7b9c0c3 stlport: mark as broken (it's unused anyway)
I seem unable to fix the error.
2014-11-27 00:00:39 +01:00

27 lines
779 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "STLport-5.2.1";
src = fetchurl {
url = "mirror://sourceforge/stlport/${name}.tar.bz2";
sha256 = "1jbgak1m1qk7d4gyn1p2grbws2icsf7grbs3dh44ai9ck1xh0nvm";
};
# fix hardcoded /usr/bin; not recognizing the standard --disable-static flag
configurePhase = ''
echo Preconf: build/Makefiles/gmake/*/sys.mak
for f in build/Makefiles/gmake/*/sys.mak; do
substituteInPlace "$f" --replace /usr/bin/ ""
done
./configure --prefix=$out
'';
meta = {
description = "An implementation of the C++ Standard Library";
homepage = http://sourceforge.net/projects/stlport/;
license = stdenv.lib.licenses.free; # seems BSD-like
broken = true; # probably glibc-2.20 -related issue
};
}