mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
* Don't use the subpath operator (~) anymore, it's subsumed by normal
concatenation (+). svn path=/nixpkgs/trunk/; revision=6080
This commit is contained in:
parent
d9ec01e77f
commit
bf1e734f85
@ -10,7 +10,7 @@ stdenv.mkDerivation {
|
||||
|
||||
# Let each plugin tell us (through its `mozillaPlugin') attribute
|
||||
# where to find the plugin in its tree.
|
||||
plugins = map (x: x ~ x.mozillaPlugin) plugins;
|
||||
plugins = map (x: x + x.mozillaPlugin) plugins;
|
||||
|
||||
meta = {
|
||||
description = firefox.meta.description + " (with various plugins)";
|
||||
|
@ -5,5 +5,5 @@ stdenv.mkDerivation {
|
||||
|
||||
builder = ./builder.sh;
|
||||
inherit xulrunner launcher;
|
||||
appfile = application ~ "application.ini";
|
||||
appfile = application + /application.ini;
|
||||
}
|
||||
|
@ -15,7 +15,7 @@ stdenv.mkDerivation {
|
||||
];
|
||||
|
||||
# So that configure can find `preloadable_libintl.so'.
|
||||
LD_LIBRARY_PATH = gettext ~ "/lib";
|
||||
LD_LIBRARY_PATH = gettext + /lib;
|
||||
|
||||
inherit gettext;
|
||||
}
|
||||
|
@ -15,7 +15,7 @@ stdenv.mkDerivation {
|
||||
];
|
||||
|
||||
# So that configure can find `preloadable_libintl.so'.
|
||||
LD_LIBRARY_PATH = gettext ~ "/lib";
|
||||
LD_LIBRARY_PATH = gettext + /lib;
|
||||
|
||||
inherit gettext;
|
||||
}
|
||||
|
@ -10,5 +10,5 @@ stdenv.mkDerivation {
|
||||
};
|
||||
buildInputs = [perl expat xlibs freetype];
|
||||
# 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 {
|
||||
name = "latex-includes";
|
||||
|
||||
realBuilder = pkgs.perl ~ "bin/perl";
|
||||
realBuilder = pkgs.perl + /bin/perl;
|
||||
args = [ ./find-includes.pl ];
|
||||
|
||||
rootFile = toString rootFile; # !!! hacky
|
||||
|
@ -210,10 +210,10 @@ rec {
|
||||
inherit (stdenvLinuxBoot2Pkgs) binutils;
|
||||
glibc = stdenvLinuxGlibc;
|
||||
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 = {
|
||||
curl = stdenvLinuxBoot3Pkgs.realCurl;
|
||||
|
@ -17,10 +17,10 @@ import ../generic {
|
||||
else
|
||||
pkgs.binutils;
|
||||
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 = {
|
||||
curl = pkgs.realCurl;
|
||||
|
@ -1,11 +1,11 @@
|
||||
{stdenv, fetchurl, python, pygtk, makeWrapper}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "bittorrent-4.4.0";
|
||||
name = "bittorrent-4.9.8";
|
||||
builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = http://www.bittorrent.com/dl/BitTorrent-4.4.0.tar.gz;
|
||||
md5 = "74d4b48202c28f0b27e989b6d5f5b214";
|
||||
url = http://download.bittorrent.com/dl/BitTorrent-4.9.8.tar.gz;
|
||||
md5 = "30d14135a8c6869976cd807db019dfd9";
|
||||
};
|
||||
buildInputs = [python pygtk];
|
||||
inherit python pygtk makeWrapper;
|
||||
|
Loading…
Reference in New Issue
Block a user