Removing midori from hydra; currently I see no easy solution without GTK rebuild

svn path=/nixpkgs/trunk/; revision=16833
This commit is contained in:
Michael Raskin
2009-08-24 14:24:47 +00:00
parent bdf2bb0bf5
commit c4b524f2fa
3 changed files with 10 additions and 5 deletions

View File

@@ -24,10 +24,14 @@ rec {
configureFlags = [];
/* doConfigure should be specified separately */
phaseNames = ["doUnpack" (doPatchShebangs ".") "doConfigure"
"doMakeInstall" (doPatchShebangs "$out/bin")
(makeManyWrappers "$out/bin/*" "--set WEBKIT_IGNORE_SSL_ERRORS 1")];
phaseNames = ["doUnpack" "shebangsHere" "doConfigure"
"doMakeInstall" "shebangsInstalled" "wrapWK"
];
shebangsHere = (doPatchShebangs ".");
shebangsInstalled = (doPatchShebangs "$out/bin");
wrapWK = (makeManyWrappers "$out/bin/*" "--set WEBKIT_IGNORE_SSL_ERRORS 1");
name = "midori-" + version;
meta = {
description = "Light WebKit-based web browser with GTK GUI.";