FullDepEntry -> fullDepEntry, PackEntry -> packEntry
svn path=/nixpkgs/trunk/; revision=15662
This commit is contained in:
@@ -4,7 +4,7 @@ let makeDictdDB = _src: _name: _subdir: _locale:
|
||||
with builderDefs;
|
||||
let localDefs = builderDefs.passthru.function (rec {
|
||||
src=_src;
|
||||
doInstall = FullDepEntry (''
|
||||
doInstall = fullDepEntry (''
|
||||
ensureDir $out/share/dictd
|
||||
tar xf ${src}
|
||||
cp $(ls ./${_subdir}/*.{dict*,index} || true) $out/share/dictd
|
||||
|
||||
@@ -11,7 +11,7 @@ rec {
|
||||
/* doConfigure should be specified separately */
|
||||
phaseNames = ["preConfigure" "doConfigure" "doMakeInstall"];
|
||||
|
||||
preConfigure = FullDepEntry (''
|
||||
preConfigure = fullDepEntry (''
|
||||
sed -e 's/[$](MKDIR)/mkdir -p /' -i doc/Makefile.in
|
||||
'') ["addInputs" "doUnpack" "minInit"];
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ rec {
|
||||
/* doConfigure should be specified separately */
|
||||
phaseNames = ["preConfigure" "doConfigure" "doMakeInstall"];
|
||||
|
||||
preConfigure = FullDepEntry (''
|
||||
preConfigure = fullDepEntry (''
|
||||
sed -e 's/[$](MKDIR)/mkdir -p /' -i doc/Makefile.in
|
||||
sed -e 's/gpm2//' -i Makefile.in
|
||||
'') ["addInputs" "doUnpack" "minInit"];
|
||||
|
||||
@@ -2,7 +2,7 @@ args :
|
||||
let
|
||||
lib = args.lib;
|
||||
fetchurl = args.fetchurl;
|
||||
FullDepEntry = args.FullDepEntry;
|
||||
fullDepEntry = args.fullDepEntry;
|
||||
|
||||
version = lib.getAttr ["version"] "0.7.47" args;
|
||||
buildInputs = with args; [
|
||||
@@ -25,7 +25,7 @@ rec {
|
||||
"--with-http_secure_link_module"
|
||||
];
|
||||
|
||||
preConfigure = FullDepEntry ''
|
||||
preConfigure = fullDepEntry ''
|
||||
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${args.libxml2}/include/libxml2"
|
||||
'' [];
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ args : with args; with builderDefs;
|
||||
buildInputs = [jre];
|
||||
configureFlags = [];
|
||||
|
||||
installPhase = FullDepEntry (''
|
||||
installPhase = fullDepEntry (''
|
||||
sed -e 's@\(common_jvm_locations\)=.*@\1${jre}@' -i bin/openfire
|
||||
cp -r . $out
|
||||
rm -r $out/logs
|
||||
|
||||
@@ -18,7 +18,7 @@ rec {
|
||||
|
||||
/* doConfigure should be removed if not needed */
|
||||
phaseNames = ["deploy" (a.makeManyWrappers "$out/share/${name}/irc.py" a.pythonWrapperArguments)];
|
||||
deploy = a.FullDepEntry (''
|
||||
deploy = a.fullDepEntry (''
|
||||
ensureDir $out/bin $out/share/${name}
|
||||
sed -e 's@/usr/bin/@${a.python}/bin/@' -i irc.py
|
||||
sed -e '/configFiles/aconfigFiles += [os.getenv("HOME")+"/.pyIRCt.xml"]' -i config.py
|
||||
|
||||
@@ -19,7 +19,7 @@ rec {
|
||||
|
||||
/* doConfigure should be removed if not needed */
|
||||
phaseNames = ["deploy" (a.makeManyWrappers "$out/share/${name}/mail.py" a.pythonWrapperArguments)];
|
||||
deploy = a.FullDepEntry (''
|
||||
deploy = a.fullDepEntry (''
|
||||
cd mail-transport
|
||||
ensureDir $out/bin $out/share/${name}
|
||||
sed -e 's@/usr/bin/@${a.python}/bin/@' -i mail.py
|
||||
|
||||
Reference in New Issue
Block a user