mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
2e0589b4ca
Upstream changes to the build system required adjusting many packages' dependencies. On the Nixpkgs side, we no longer propagate the dependency on cmake (to reduce closure size), so downstream dependencies had to be adjusted for most packages that depend on kdelibs.
27 lines
788 B
Nix
27 lines
788 B
Nix
{ stdenv, fetchurl, automoc4, cmake, gettext, perl, pkgconfig
|
|
, kde4, shared_desktop_ontologies, qca2, qoauth }:
|
|
|
|
assert builtins.compareVersions "4.8.3" kde4.release != 1; # https://bugs.kde.org/show_bug.cgi?id=306077
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "rekonq-2.4.2"; # >=1.80 need kde >=4.9.0
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/rekonq/${name}.tar.xz";
|
|
sha256 = "09jihyf4xl7bwfwahwwbx6f11h3zqljccchnpl4mijljylr5p079";
|
|
};
|
|
|
|
buildInputs = [ kde4.kdelibs qca2 qoauth ];
|
|
|
|
nativeBuildInputs = [
|
|
automoc4 cmake gettext perl pkgconfig shared_desktop_ontologies
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.urkud ];
|
|
description = "KDE Webkit browser";
|
|
homepage = http://rekonq.sourceforge.net;
|
|
};
|
|
}
|