Adding uzbl - a tiny browser

svn path=/nixpkgs/trunk/; revision=16006
This commit is contained in:
Michael Raskin 2009-06-19 08:05:21 +00:00
parent 9765da15e0
commit 35bd2c76b0
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,29 @@
a :
let
fetchurl = a.fetchurl;
version = a.lib.attrByPath ["version"] "2009.06.06" a;
buildInputs = with a; [
pkgconfig webkit libsoup gtk
];
in
rec {
src = fetchurl {
url = "http://github.com/Dieterbe/uzbl/tarball/${version}";
sha256 = "1bgajpcsv0a8nmliqkrk99d3k5s60acjgvh0sx7znsnjajbfv3yz";
name = "uzbl-master-${version}.tar.gz";
};
inherit buildInputs;
configureFlags = [];
/* doConfigure should be removed if not needed */
phaseNames = ["doMakeInstall"];
installFlags = "PREFIX=$out";
name = "uzbl-" + version;
meta = {
description = "Tiny externally controllable webkit browser";
};
}

View File

@ -7062,6 +7062,12 @@ let
uucp = builderDefsPackage (selectVersion ../tools/misc/uucp "1.07") {
};
uzbl = builderDefsPackage (import ../applications/networking/browsers/uzbl) {
inherit pkgconfig webkit;
inherit (gtkLibs) gtk;
inherit (gnome26) libsoup;
};
valknut = import ../applications/networking/p2p/valknut {
inherit fetchurl stdenv perl x11 libxml2 libjpeg libpng openssl dclib;
qt = qt3;