81a2b58c39
Because: 1. It is a mere alias of `pythonPackages.sip` 2. It is usually not needed since propagated by `pyqt4` 3. It makes it easy to have a packages depend on two different versions of sip
11 lines
277 B
Nix
11 lines
277 B
Nix
{ stdenv, kde, kdelibs, kactivities, qjson, pyqt4, python, pykde4}:
|
|
|
|
kde {
|
|
|
|
buildInputs = [ kdelibs kactivities qjson pyqt4 python pykde4 ];
|
|
|
|
meta = {
|
|
description = "Kate, the KDE Advanced Text Editor, as well as KWrite";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|