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