commit
5336176a55
|
@ -3074,6 +3074,11 @@
|
||||||
github = "risicle";
|
github = "risicle";
|
||||||
name = "Robert Scott";
|
name = "Robert Scott";
|
||||||
};
|
};
|
||||||
|
rittelle = {
|
||||||
|
email = "rittelle@posteo.de";
|
||||||
|
github = "rittelle";
|
||||||
|
name = "Lennart Rittel";
|
||||||
|
};
|
||||||
rlupton20 = {
|
rlupton20 = {
|
||||||
email = "richard.lupton@gmail.com";
|
email = "richard.lupton@gmail.com";
|
||||||
github = "rlupton20";
|
github = "rlupton20";
|
||||||
|
|
|
@ -93,6 +93,7 @@ let
|
||||||
kcolorchooser = callPackage ./kcolorchooser.nix {};
|
kcolorchooser = callPackage ./kcolorchooser.nix {};
|
||||||
kcontacts = callPackage ./kcontacts.nix {};
|
kcontacts = callPackage ./kcontacts.nix {};
|
||||||
kdav = callPackage ./kdav.nix {};
|
kdav = callPackage ./kdav.nix {};
|
||||||
|
kdebugsettings = callPackage ./kdebugsettings.nix {};
|
||||||
kdegraphics-mobipocket = callPackage ./kdegraphics-mobipocket.nix {};
|
kdegraphics-mobipocket = callPackage ./kdegraphics-mobipocket.nix {};
|
||||||
kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {};
|
kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {};
|
||||||
kdenetwork-filesharing = callPackage ./kdenetwork-filesharing.nix {};
|
kdenetwork-filesharing = callPackage ./kdenetwork-filesharing.nix {};
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
mkDerivation, lib,
|
||||||
|
extra-cmake-modules, kdoctools,
|
||||||
|
gettext,
|
||||||
|
kcoreaddons, kconfig, kdbusaddons, kwidgetsaddons, kitemviews, kcompletion,
|
||||||
|
python
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation {
|
||||||
|
name = "kdebugsettings";
|
||||||
|
meta = {
|
||||||
|
license = with lib.licenses; [ gpl2 ];
|
||||||
|
maintainers = [ lib.maintainers.rittelle ];
|
||||||
|
};
|
||||||
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
||||||
|
buildInputs = [
|
||||||
|
gettext kcoreaddons kconfig kdbusaddons kwidgetsaddons kitemviews kcompletion python
|
||||||
|
];
|
||||||
|
propagatedUserEnvPkgs = [ ];
|
||||||
|
}
|
Loading…
Reference in New Issue