summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2009-05-19 23:25:58 +0000
committerMarc Weber <marco-oweber@gmx.de>2009-05-19 23:25:58 +0000
commit52647ea3b08e24623ef32b303a4815467e1144e3 (patch)
tree94635a356ecae478695d3c25fc0416db92bad54d /pkgs/applications/graphics
parent1500252e6fa30fc8b615587bc13a8f470b071586 (diff)
FullDepEntry -> fullDepEntry, PackEntry -> packEntry
svn path=/nixpkgs/trunk/; revision=15662
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/xaos/default.nix2
-rw-r--r--pkgs/applications/graphics/xscreensaver/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/xaos/default.nix b/pkgs/applications/graphics/xaos/default.nix
index 3ee0ba8db069..226dcb8d918e 100644
--- a/pkgs/applications/graphics/xaos/default.nix
+++ b/pkgs/applications/graphics/xaos/default.nix
@@ -20,7 +20,7 @@ rec {
/* doConfigure should be removed if not needed */
phaseNames = ["preConfigure" "doConfigure" "doMakeInstall"];
- preConfigure = a.FullDepEntry (''
+ preConfigure = a.fullDepEntry (''
sed -e s@/usr/@"$out/"@g -i configure $(find . -name 'Makefile*')
ensureDir $out/share/locale
'') ["doUnpack" "minInit" "defEnsureDir"];
diff --git a/pkgs/applications/graphics/xscreensaver/default.nix b/pkgs/applications/graphics/xscreensaver/default.nix
index a422994ea312..fb09838d260b 100644
--- a/pkgs/applications/graphics/xscreensaver/default.nix
+++ b/pkgs/applications/graphics/xscreensaver/default.nix
@@ -23,7 +23,7 @@ args : with args; let localDefs = builderDefs.passthru.function (args // rec {
});
in with localDefs;
let
- preConfigure = FullDepEntry ("
+ preConfigure = fullDepEntry ("
sed -e 's%@GTK_DATADIR@%@datadir@% ; s%@PO_DATADIR@%@datadir@%' "+
"-i driver/Makefile.in po/Makefile.in.in;
") ["minInit" "doUnpack"];