Skip to content

Commit

Permalink
treewide: more fixes of phases after bash 4.3 -> 4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed Jan 6, 2017
1 parent 29e9355 commit 75fc704
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkgs/applications/misc/pcmanx-gtk2/default.nix
Expand Up @@ -9,7 +9,7 @@ stdenv.mkDerivation {

buildInputs = [ gtk2 libXft intltool automake115x autoconf libtool pkgconfig ];

preConfigurePhases = ''
preConfigure = ''
./autogen.sh
'';

Expand Down
1 change: 0 additions & 1 deletion pkgs/misc/themes/orion/default.nix
Expand Up @@ -11,7 +11,6 @@ stdenv.mkDerivation {

propagatedUserEnvPkgs = [ gtk-engine-murrine ];

phases = "$prePhases unpackPhase installPhase fixupPhase $postPhases";
installPhase = ''
mkdir -p $out/share/themes/orion
cp -r gtk-2.0 gtk-3.0 metacity-1 openbox-3 xfwm4 $out/share/themes/orion
Expand Down
2 changes: 1 addition & 1 deletion pkgs/tools/text/zimreader/default.nix
Expand Up @@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
buildInputs = [ automake autoconf libtool zimlib cxxtools tntnet ];
setSourceRoot = "cd openzim-*/zimreader; export sourceRoot=`pwd`";
preConfigurePhases = [ "./autogen.sh" ];
preConfigure = "./autogen.sh";

meta = {
description = "A tool to serve ZIM files using HTTP";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/tools/text/zimwriterfs/default.nix
Expand Up @@ -12,7 +12,7 @@ stdenv.mkDerivation {

buildInputs = [ automake autoconf libtool lzma pkgconfig zimlib file zlib ];
setSourceRoot = "cd openzim-*/zimwriterfs; export sourceRoot=`pwd`";
preConfigurePhases = [ "./autogen.sh" ];
preConfigure = "./autogen.sh";

meta = {
description = "A console tool to create ZIM files";
Expand Down

0 comments on commit 75fc704

Please sign in to comment.