Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #65032 from aanderse/kdevelop

kdevelop, kdev-php, kdev-python: 5.3.1 -> 5.3.3 [backport]

authored by

Aaron Andersen and committed by
GitHub
31477504 248a3d8f

+13 -20
+4 -7
pkgs/applications/editors/kdevelop5/kdev-php.nix
··· 1 1 { stdenv, lib, fetchurl, cmake, extra-cmake-modules, threadweaver, ktexteditor, kdevelop-unwrapped, kdevelop-pg-qt }: 2 2 3 - let 3 + stdenv.mkDerivation rec { 4 4 pname = "kdev-php"; 5 - version = "5.3.1"; 6 - in 7 - stdenv.mkDerivation rec { 8 - name = "${pname}-${version}"; 5 + version = "5.3.3"; 9 6 10 7 src = fetchurl { 11 8 url = "https://github.com/KDE/${pname}/archive/v${version}.tar.gz"; 12 - sha256 = "1xiz4v6w30dsa7l4nk3jw3hxpkx71b0yaaj2k8s7xzgjif824bgl"; 9 + sha256 = "0nn3yfbi60h7p7p1w2pvgg098qplbds79rk2iadyvhvl3sjd77wf"; 13 10 }; 14 11 15 12 cmakeFlags = [ ··· 23 20 maintainers = [ maintainers.aanderse ]; 24 21 platforms = platforms.linux; 25 22 description = "PHP support for KDevelop"; 26 - homepage = https://www.kdevelop.org; 23 + homepage = "https://www.kdevelop.org"; 27 24 license = [ licenses.gpl2 ]; 28 25 }; 29 26 }
+4 -7
pkgs/applications/editors/kdevelop5/kdev-python.nix
··· 1 1 { stdenv, lib, fetchurl, cmake, extra-cmake-modules, threadweaver, ktexteditor, kdevelop-unwrapped, python }: 2 2 3 - let 3 + stdenv.mkDerivation rec { 4 4 pname = "kdev-python"; 5 - version = "5.3.1"; 6 - in 7 - stdenv.mkDerivation rec { 8 - name = "${pname}-${version}"; 5 + version = "5.3.3"; 9 6 10 7 src = fetchurl { 11 8 url = "https://github.com/KDE/${pname}/archive/v${version}.tar.gz"; 12 - sha256 = "11hf8n6vrlaz31c0p3xbnf0df2q5j6ykgc9ip0l5g33kadwn5b9j"; 9 + sha256 = "0bqsny2jgi6wi1cz65i2j9r1hiwna2x10mzy7vdk8bz7b4z766yg"; 13 10 }; 14 11 15 12 cmakeFlags = [ ··· 24 21 maintainers = [ maintainers.aanderse ]; 25 22 platforms = platforms.linux; 26 23 description = "Python support for KDevelop"; 27 - homepage = https://www.kdevelop.org; 24 + homepage = "https://www.kdevelop.org"; 28 25 license = [ licenses.gpl2 ]; 29 26 }; 30 27 }
+5 -6
pkgs/applications/editors/kdevelop5/kdevelop.nix
··· 8 8 }: 9 9 10 10 let 11 - pname = "kdevelop"; 12 - version = "5.3.1"; 13 11 qtVersion = "5.${lib.versions.minor qtbase.version}"; 14 12 in 15 13 mkDerivation rec { 16 - name = "${pname}-${version}"; 14 + pname = "kdevelop"; 15 + version = "5.3.3"; 17 16 18 17 src = fetchurl { 19 - url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz"; 20 - sha256 = "1098ra7qpal6578hsv20kvxc63v47sp85wjhqr5rgzr2fm7jf6fr"; 18 + url = "mirror://kde/stable/${pname}/${version}/src/${pname}-${version}.tar.xz"; 19 + sha256 = "0778587qvi268ab2fgggfl40cv2swgr8q891q1paflp3m1xirpff"; 21 20 }; 22 21 23 22 nativeBuildInputs = [ ··· 76 75 programing languages. It is based on KDevPlatform, KDE and Qt 77 76 libraries and is under development since 1998. 78 77 ''; 79 - homepage = https://www.kdevelop.org; 78 + homepage = "https://www.kdevelop.org"; 80 79 license = with licenses; [ gpl2Plus lgpl2Plus ]; 81 80 }; 82 81 }