2015-09-27 16:11:01 +01:00
|
|
|
{ stdenv, fetchurl, automoc4, cmake, gettext, perl, pkgconfig
|
|
|
|
, kde4, shared_desktop_ontologies, qca2, qoauth }:
|
2013-03-02 13:44:51 +00:00
|
|
|
|
|
|
|
assert builtins.compareVersions "4.8.3" kde4.release != 1; # https://bugs.kde.org/show_bug.cgi?id=306077
|
2010-05-15 10:47:32 +01:00
|
|
|
|
2010-07-31 14:06:10 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-11-26 20:11:34 +00:00
|
|
|
name = "rekonq-2.4.2"; # >=1.80 need kde >=4.9.0
|
2010-05-15 10:47:32 +01:00
|
|
|
|
2010-07-31 14:06:10 +01:00
|
|
|
src = fetchurl {
|
2014-11-26 20:11:34 +00:00
|
|
|
url = "mirror://sourceforge/rekonq/${name}.tar.xz";
|
|
|
|
sha256 = "09jihyf4xl7bwfwahwwbx6f11h3zqljccchnpl4mijljylr5p079";
|
2010-07-31 14:06:10 +01:00
|
|
|
};
|
|
|
|
|
2013-03-02 13:44:51 +00:00
|
|
|
buildInputs = [ kde4.kdelibs qca2 qoauth ];
|
2011-12-16 10:48:59 +00:00
|
|
|
|
2015-09-27 16:11:01 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
automoc4 cmake gettext perl pkgconfig shared_desktop_ontologies
|
|
|
|
];
|
2010-07-31 14:06:10 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.urkud ];
|
|
|
|
description = "KDE Webkit browser";
|
2016-02-16 14:11:01 +00:00
|
|
|
homepage = https://rekonq.kde.org/;
|
2010-07-31 14:06:10 +01:00
|
|
|
};
|
|
|
|
}
|