Skip to content

Commit

Permalink
Merge pull request #65032 from aanderse/kdevelop
Browse files Browse the repository at this point in the history
kdevelop, kdev-php, kdev-python: 5.3.1 -> 5.3.3 [backport]
  • Loading branch information
aanderse committed Jul 23, 2019
2 parents 248a3d8 + 3bf8249 commit 3147750
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 20 deletions.
11 changes: 4 additions & 7 deletions pkgs/applications/editors/kdevelop5/kdev-php.nix
@@ -1,15 +1,12 @@
{ stdenv, lib, fetchurl, cmake, extra-cmake-modules, threadweaver, ktexteditor, kdevelop-unwrapped, kdevelop-pg-qt }:

let
pname = "kdev-php";
version = "5.3.1";
in
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "kdev-php";
version = "5.3.3";

src = fetchurl {
url = "https://github.com/KDE/${pname}/archive/v${version}.tar.gz";
sha256 = "1xiz4v6w30dsa7l4nk3jw3hxpkx71b0yaaj2k8s7xzgjif824bgl";
sha256 = "0nn3yfbi60h7p7p1w2pvgg098qplbds79rk2iadyvhvl3sjd77wf";
};

cmakeFlags = [
Expand All @@ -23,7 +20,7 @@ stdenv.mkDerivation rec {
maintainers = [ maintainers.aanderse ];
platforms = platforms.linux;
description = "PHP support for KDevelop";
homepage = https://www.kdevelop.org;
homepage = "https://www.kdevelop.org";
license = [ licenses.gpl2 ];
};
}
11 changes: 4 additions & 7 deletions pkgs/applications/editors/kdevelop5/kdev-python.nix
@@ -1,15 +1,12 @@
{ stdenv, lib, fetchurl, cmake, extra-cmake-modules, threadweaver, ktexteditor, kdevelop-unwrapped, python }:

let
pname = "kdev-python";
version = "5.3.1";
in
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "kdev-python";
version = "5.3.3";

src = fetchurl {
url = "https://github.com/KDE/${pname}/archive/v${version}.tar.gz";
sha256 = "11hf8n6vrlaz31c0p3xbnf0df2q5j6ykgc9ip0l5g33kadwn5b9j";
sha256 = "0bqsny2jgi6wi1cz65i2j9r1hiwna2x10mzy7vdk8bz7b4z766yg";
};

cmakeFlags = [
Expand All @@ -24,7 +21,7 @@ stdenv.mkDerivation rec {
maintainers = [ maintainers.aanderse ];
platforms = platforms.linux;
description = "Python support for KDevelop";
homepage = https://www.kdevelop.org;
homepage = "https://www.kdevelop.org";
license = [ licenses.gpl2 ];
};
}
11 changes: 5 additions & 6 deletions pkgs/applications/editors/kdevelop5/kdevelop.nix
Expand Up @@ -8,16 +8,15 @@
}:

let
pname = "kdevelop";
version = "5.3.1";
qtVersion = "5.${lib.versions.minor qtbase.version}";
in
mkDerivation rec {
name = "${pname}-${version}";
pname = "kdevelop";
version = "5.3.3";

src = fetchurl {
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz";
sha256 = "1098ra7qpal6578hsv20kvxc63v47sp85wjhqr5rgzr2fm7jf6fr";
url = "mirror://kde/stable/${pname}/${version}/src/${pname}-${version}.tar.xz";
sha256 = "0778587qvi268ab2fgggfl40cv2swgr8q891q1paflp3m1xirpff";
};

nativeBuildInputs = [
Expand Down Expand Up @@ -76,7 +75,7 @@ mkDerivation rec {
programing languages. It is based on KDevPlatform, KDE and Qt
libraries and is under development since 1998.
'';
homepage = https://www.kdevelop.org;
homepage = "https://www.kdevelop.org";
license = with licenses; [ gpl2Plus lgpl2Plus ];
};
}

0 comments on commit 3147750

Please sign in to comment.