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