kdevelop, kdev-php, kdev-python: 5.3.2 -> 5.3.3

This commit is contained in:
Aaron Andersen
2019-07-17 22:18:03 -04:00
parent 2f746bc1fc
commit e6a3b3b7df
3 changed files with 13 additions and 20 deletions

View File

@@ -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 ];
};
}