2020-05-15 00:23:33 +00:00
|
|
|
self: super:
|
|
|
|
|
|
|
|
rec {
|
|
|
|
my = super.recurseIntoAttrs {
|
|
|
|
sddm-nx = super.callPackage ./nx-sddm.nix {};
|
2020-05-21 17:47:02 +00:00
|
|
|
plasma-applet-window-buttons = super.callPackage ./plasma-applet-window-buttons.nix {};
|
2020-05-15 00:23:33 +00:00
|
|
|
};
|
2020-05-21 17:47:02 +00:00
|
|
|
|
|
|
|
latte-dock = super.latte-dock.overrideAttrs (oldAttrs: rec{
|
|
|
|
src = fetchGit {
|
|
|
|
url = https://invent.kde.org/plasma/latte-dock.git;
|
|
|
|
rev = "3c73bff0ac983625f31ec2ed9bc388221e778e75";
|
|
|
|
};
|
|
|
|
});
|
2020-05-15 00:23:33 +00:00
|
|
|
}
|