Skip to content

Commit

Permalink
Merge pull request #26404 from ambrop72/kdevelop-511
Browse files Browse the repository at this point in the history
kdevelop: 5.0.4 -> 5.1.1
  • Loading branch information
joachifm committed Jun 9, 2017
2 parents fbb5b2e + 8f4619b commit 7badb92
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
7 changes: 3 additions & 4 deletions pkgs/applications/editors/kdevelop5/kdevelop.nix
Expand Up @@ -9,16 +9,15 @@

let
pname = "kdevelop";
version = "5.0.4";
dirVersion = "5.0.4";
version = "5.1.1";

in
stdenv.mkDerivation rec {
name = "${pname}-${version}";

src = fetchurl {
url = "mirror://kde/stable/${pname}/${dirVersion}/src/${name}.tar.xz";
sha256 = "191142b2bdb14837c82721fdfeb15e852329f2c4c0d48fd479c57514c3235d55";
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz";
sha256 = "0a01a4ffb2f01802cf4945521a3149a8f82c21fa8a97935991f1854b7db5d754";
};

nativeBuildInputs = [
Expand Down
17 changes: 12 additions & 5 deletions pkgs/applications/editors/kdevelop5/kdevplatform.nix
@@ -1,23 +1,30 @@
{ stdenv, fetchurl, cmake, gettext, pkgconfig, extra-cmake-modules, makeQtWrapper
{ stdenv, fetchurl, fetchpatch, cmake, gettext, pkgconfig, extra-cmake-modules, makeQtWrapper
, boost, subversion, apr, aprutil
, qtscript, qtwebkit, grantlee, karchive, kconfig, kcoreaddons, kguiaddons, kiconthemes, ki18n
, kitemmodels, kitemviews, kio, kparts, sonnet, kcmutils, knewstuff, knotifications
, knotifyconfig, ktexteditor, threadweaver, kdeclarative, libkomparediff2 }:

let
pname = "kdevplatform";
version = "5.0.4";
dirVersion = "5.0.4";
version = "5.1.1";

in
stdenv.mkDerivation rec {
name = "${pname}-${version}";

src = fetchurl {
url = "mirror://kde/stable/kdevelop/${dirVersion}/src/${name}.tar.xz";
sha256 = "01abfcd71383048d017fe989ccce0e7590010a3975bbe6e161f55ababe2ad471";
url = "mirror://kde/stable/kdevelop/${version}/src/${name}.tar.xz";
sha256 = "3159440512b1373c1a4b35f401ba1f81217de9578372b45137af141eeda6e726";
};

patches = [
(fetchpatch {
name = "kdevplatform-project-selection.patch";
url = "https://cgit.kde.org/kdevplatform.git/patch/?id=da4c0fdfcf21dc2a8f48a2b1402213a32effd47a";
sha256 = "16ws8l6dciy2civjnsaj03ml2bzvg4a9g7gd4iyx4hprw65zrcxm";
})
];

nativeBuildInputs = [ cmake gettext pkgconfig extra-cmake-modules makeQtWrapper ];

propagatedBuildInputs = [ ];
Expand Down

0 comments on commit 7badb92

Please sign in to comment.