nixpkgs/pkgs/desktops/kde-4.14/applications/kate.nix
Vincent Laporte 81a2b58c39 nixpkgs: remove redundant attribute sip
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
2014-12-23 19:37:21 +01:00

12 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;
};
}