mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 22:57:42 +03:00
1442e8ec22
svn path=/nixpkgs/trunk/; revision=6711
14 lines
381 B
Nix
14 lines
381 B
Nix
{ stdenv, fetchurl, noSysDirs}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "gcc-static-3.4.6";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/gcc-3.4.6.tar.bz2;
|
|
md5 = "4a21ac777d4b5617283ce488b808da7b";
|
|
};
|
|
# !!! apply only if noSysDirs is set
|
|
inherit noSysDirs;
|
|
patches = if noSysDirs then [./no-sys-dirs.patch] else [./ldflags.patch];
|
|
}
|