mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
* `drv + /path' is deprecated, so don't do that anymore.
svn path=/nixpkgs/trunk/; revision=6754
This commit is contained in:
parent
76125fb2bc
commit
76405f2b7f
@ -5,7 +5,7 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
builder = ./builder.sh;
|
builder = ./builder.sh;
|
||||||
inherit xulrunner launcher;
|
inherit xulrunner launcher;
|
||||||
appfile = application + /application.ini;
|
appfile = application + "/application.ini";
|
||||||
|
|
||||||
inherit (application) meta;
|
inherit (application) meta;
|
||||||
}
|
}
|
||||||
|
@ -15,7 +15,7 @@ stdenv.mkDerivation {
|
|||||||
];
|
];
|
||||||
|
|
||||||
# So that configure can find `preloadable_libintl.so'.
|
# So that configure can find `preloadable_libintl.so'.
|
||||||
LD_LIBRARY_PATH = gettext + /lib;
|
LD_LIBRARY_PATH = gettext + "/lib";
|
||||||
|
|
||||||
inherit gettext;
|
inherit gettext;
|
||||||
}
|
}
|
||||||
|
@ -15,7 +15,7 @@ stdenv.mkDerivation {
|
|||||||
];
|
];
|
||||||
|
|
||||||
# So that configure can find `preloadable_libintl.so'.
|
# So that configure can find `preloadable_libintl.so'.
|
||||||
LD_LIBRARY_PATH = gettext + /lib;
|
LD_LIBRARY_PATH = gettext + "/lib";
|
||||||
|
|
||||||
inherit gettext;
|
inherit gettext;
|
||||||
}
|
}
|
||||||
|
@ -10,5 +10,5 @@ stdenv.mkDerivation {
|
|||||||
};
|
};
|
||||||
buildInputs = [perl expat xlibs freetype];
|
buildInputs = [perl expat xlibs freetype];
|
||||||
# Zoom doesn't add the right directory in the include path.
|
# Zoom doesn't add the right directory in the include path.
|
||||||
CFLAGS = ["-I" (freetype + /include/freetype2)];
|
CFLAGS = ["-I" (freetype + "/include/freetype2")];
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,7 @@ rec {
|
|||||||
pkgs.stdenv.mkDerivation {
|
pkgs.stdenv.mkDerivation {
|
||||||
name = "latex-includes";
|
name = "latex-includes";
|
||||||
|
|
||||||
realBuilder = pkgs.perl + /bin/perl;
|
realBuilder = pkgs.perl + "/bin/perl";
|
||||||
args = [ ./find-includes.pl ];
|
args = [ ./find-includes.pl ];
|
||||||
|
|
||||||
rootFile = toString rootFile; # !!! hacky
|
rootFile = toString rootFile; # !!! hacky
|
||||||
|
@ -214,10 +214,10 @@ rec {
|
|||||||
inherit (stdenvLinuxBoot2Pkgs) binutils;
|
inherit (stdenvLinuxBoot2Pkgs) binutils;
|
||||||
glibc = stdenvLinuxGlibc;
|
glibc = stdenvLinuxGlibc;
|
||||||
gcc = stdenvLinuxBoot2Pkgs.gcc.gcc;
|
gcc = stdenvLinuxBoot2Pkgs.gcc.gcc;
|
||||||
shell = stdenvLinuxBoot3Pkgs.bash + /bin/sh;
|
shell = stdenvLinuxBoot3Pkgs.bash + "/bin/sh";
|
||||||
};
|
};
|
||||||
|
|
||||||
shell = stdenvLinuxBoot3Pkgs.bash + /bin/sh;
|
shell = stdenvLinuxBoot3Pkgs.bash + "/bin/sh";
|
||||||
|
|
||||||
extraAttrs = {
|
extraAttrs = {
|
||||||
curl = stdenvLinuxBoot3Pkgs.realCurl;
|
curl = stdenvLinuxBoot3Pkgs.realCurl;
|
||||||
|
@ -25,7 +25,7 @@ let {
|
|||||||
inherit system;
|
inherit system;
|
||||||
name = "stdenv-init2-mingw";
|
name = "stdenv-init2-mingw";
|
||||||
shell = msysShell;
|
shell = msysShell;
|
||||||
path = [(msys + /bin)];
|
path = [(msys + "/bin")];
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -37,12 +37,12 @@ let {
|
|||||||
name = "stdenv-init3-mingw";
|
name = "stdenv-init3-mingw";
|
||||||
shell = msysShell;
|
shell = msysShell;
|
||||||
path = [
|
path = [
|
||||||
(make + /bin)
|
(make + "/bin")
|
||||||
(binutils + /bin)
|
(binutils + "/bin")
|
||||||
(gccCore + /bin)
|
(gccCore + "/bin")
|
||||||
(mingwRuntimeBin + /bin)
|
(mingwRuntimeBin + "/bin")
|
||||||
(w32apiBin + /bin)
|
(w32apiBin + "/bin")
|
||||||
(msys + /bin)
|
(msys + "/bin")
|
||||||
];
|
];
|
||||||
|
|
||||||
extraEnv = {
|
extraEnv = {
|
||||||
@ -65,7 +65,7 @@ let {
|
|||||||
};
|
};
|
||||||
|
|
||||||
shell =
|
shell =
|
||||||
msys + /bin/sh + ".exe";
|
msys + "/bin/sh.exe";
|
||||||
|
|
||||||
stdenv =
|
stdenv =
|
||||||
stdenvInit2.mkDerivation {
|
stdenvInit2.mkDerivation {
|
||||||
@ -158,7 +158,7 @@ let {
|
|||||||
};
|
};
|
||||||
|
|
||||||
msysShell =
|
msysShell =
|
||||||
msys + /bin/sh + ".exe";
|
msys + "/bin/sh.exe";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Binary packages, based on stdenvInit2
|
* Binary packages, based on stdenvInit2
|
||||||
|
@ -17,10 +17,10 @@ import ../generic {
|
|||||||
else
|
else
|
||||||
pkgs.binutils;
|
pkgs.binutils;
|
||||||
gcc = if stdenv.isDarwin then pkgs.gccApple.gcc else pkgs.gcc.gcc;
|
gcc = if stdenv.isDarwin then pkgs.gccApple.gcc else pkgs.gcc.gcc;
|
||||||
shell = pkgs.bash + /bin/sh;
|
shell = pkgs.bash + "/bin/sh";
|
||||||
};
|
};
|
||||||
|
|
||||||
shell = pkgs.bash + /bin/sh;
|
shell = pkgs.bash + "/bin/sh";
|
||||||
|
|
||||||
extraAttrs = {
|
extraAttrs = {
|
||||||
curl = pkgs.realCurl;
|
curl = pkgs.realCurl;
|
||||||
|
Loading…
Reference in New Issue
Block a user