bd01fad0ed
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
25 lines
727 B
Nix
25 lines
727 B
Nix
{ stdenv, fetchgit, automoc4, cmake, perl, pkgconfig, kdelibs }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "kwebkitpart-${version}";
|
|
version = "1.3.3";
|
|
|
|
src = fetchgit {
|
|
url = git://anongit.kde.org/kwebkitpart;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "13vfv88njml7x67a37ymmlv9qs30fkmvkq0278lp7llmvp5qnxcj";
|
|
};
|
|
|
|
patches = [ ./CVE-2014-8600.diff ];
|
|
|
|
buildInputs = [ kdelibs ];
|
|
|
|
nativeBuildInputs = [ automoc4 cmake perl pkgconfig ];
|
|
|
|
meta = with stdenv.lib; {
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.phreedom ];
|
|
description = "A WebKit KPart for Konqueror, Akregator and other KDE applications";
|
|
homepage = https://projects.kde.org/projects/extragear/base/kwebkitpart;
|
|
};
|
|
}
|