Added Midori - a light, WebKit-based GTK browser.
svn path=/nixpkgs/trunk/; revision=12818
This commit is contained in:
parent
317d89066b
commit
958ea79a78
2 changed files with 41 additions and 0 deletions
34
pkgs/applications/networking/browsers/midori/default.nix
Normal file
34
pkgs/applications/networking/browsers/midori/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
args :
|
||||
let
|
||||
lib = args.lib;
|
||||
fetchurl = args.fetchurl;
|
||||
doPatchShebangs = args.doPatchShebangs;
|
||||
makeManyWrappers = args.makeManyWrappers;
|
||||
|
||||
version = lib.getAttr ["version"] "0.0.21" args;
|
||||
buildInputs = with args; [
|
||||
intltool python imagemagick gtk glib webkit libxml2
|
||||
gtksourceview pkgconfig which gettext makeWrapper
|
||||
];
|
||||
in
|
||||
rec {
|
||||
src = fetchurl {
|
||||
url = "http://goodies.xfce.org/releases/midori/midori-${version}.tar.bz2";
|
||||
sha256 = if version == "0.0.21" then
|
||||
"0cbpvjdfzgbqwn8rfkp3l35scfvz9cc8hip8v35vkxpac9igcqg5"
|
||||
else null;
|
||||
};
|
||||
|
||||
inherit buildInputs;
|
||||
configureFlags = [];
|
||||
|
||||
/* doConfigure should be specified separately */
|
||||
phaseNames = ["doUnpack" (doPatchShebangs ".") "doConfigure"
|
||||
"doMakeInstall" (doPatchShebangs "$out/bin")
|
||||
(makeManyWrappers "$out/bin/*" "--set WEBKIT_IGNORE_SSL_ERRORS 1")];
|
||||
|
||||
name = "midori-" + version;
|
||||
meta = {
|
||||
description = "Light WebKit-based web browser with GTK GUI.";
|
||||
};
|
||||
}
|
|
@ -6448,6 +6448,13 @@ let
|
|||
inherit fetchurl stdenv python makeWrapper;
|
||||
};
|
||||
|
||||
midori = builderDefsPackage (import ../applications/networking/browsers/midori) {
|
||||
inherit imagemagick intltool python pkgconfig webkit libxml2
|
||||
which gettext makeWrapper;
|
||||
inherit (gtkLibs) gtk glib;
|
||||
inherit (gnome) gtksourceview;
|
||||
};
|
||||
|
||||
minicom = builderDefsPackage (selectVersion ../tools/misc/minicom "2.3") {
|
||||
inherit ncurses;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue