aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/editors/kdevelop5
diff options
context:
space:
mode:
authorAaron Andersen <aaron@fosslib.net>2019-07-18 12:27:45 -0400
committerGitHub <noreply@github.com>2019-07-18 12:27:45 -0400
commit02b260bc57305623e34dd7b9ea280166b476ceb8 (patch)
treee9139e829a351a7c749d25ebf7f93c0e11d8e6fa /pkgs/applications/editors/kdevelop5
parent06005e862e44a8a4a5e9f4fbffb92c932fd3e962 (diff)
parente6a3b3b7df8eb87c013560b86830119927ca352b (diff)
Merge pull request #65012 from aanderse/kdevelop
kdevelop, kdev-php, kdev-python: 5.3.2 -> 5.3.3
Diffstat (limited to 'pkgs/applications/editors/kdevelop5')
-rw-r--r--pkgs/applications/editors/kdevelop5/kdev-php.nix11
-rw-r--r--pkgs/applications/editors/kdevelop5/kdev-python.nix11
-rw-r--r--pkgs/applications/editors/kdevelop5/kdevelop.nix11
3 files changed, 13 insertions, 20 deletions
diff --git a/pkgs/applications/editors/kdevelop5/kdev-php.nix b/pkgs/applications/editors/kdevelop5/kdev-php.nix
index 085affa5f7e..e6f95f74011 100644
--- a/pkgs/applications/editors/kdevelop5/kdev-php.nix
+++ b/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.2";
-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 = "0yjn7y7al2xs8g0mrjvcym8gbjy4wmiv7lsljcrasjd7ymag1wgs";
+ sha256 = "0nn3yfbi60h7p7p1w2pvgg098qplbds79rk2iadyvhvl3sjd77wf";
};
nativeBuildInputs = [ cmake extra-cmake-modules ];
@@ -19,7 +16,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 ];
};
}
diff --git a/pkgs/applications/editors/kdevelop5/kdev-python.nix b/pkgs/applications/editors/kdevelop5/kdev-python.nix
index 4fbf3ed297c..099153995c9 100644
--- a/pkgs/applications/editors/kdevelop5/kdev-python.nix
+++ b/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.2";
-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 = "0gqv1abzfpxkrf538rb62d2291lmlra8rghm9q9r3x8a46wh96zm";
+ sha256 = "0bqsny2jgi6wi1cz65i2j9r1hiwna2x10mzy7vdk8bz7b4z766yg";
};
cmakeFlags = [
@@ -23,7 +20,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 ];
};
}
diff --git a/pkgs/applications/editors/kdevelop5/kdevelop.nix b/pkgs/applications/editors/kdevelop5/kdevelop.nix
index c17239d4fd9..989432fc65d 100644
--- a/pkgs/applications/editors/kdevelop5/kdevelop.nix
+++ b/pkgs/applications/editors/kdevelop5/kdevelop.nix
@@ -8,16 +8,15 @@
}:
let
- pname = "kdevelop";
- version = "5.3.2";
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 = "0akgdnvrab6mbwnmvgzsplk0qh83k1hnm5xc06yxr1s1a5sxbk08";
+ url = "mirror://kde/stable/${pname}/${version}/src/${pname}-${version}.tar.xz";
+ sha256 = "0778587qvi268ab2fgggfl40cv2swgr8q891q1paflp3m1xirpff";
};
nativeBuildInputs = [
@@ -77,7 +76,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 ];
};
}