12 lines
153 B
Nix
12 lines
153 B
Nix
|
{ kde, kdelibs }:
|
||
|
|
||
|
kde {
|
||
|
|
||
|
buildInputs = [ kdelibs ];
|
||
|
|
||
|
meta = {
|
||
|
description = "Konsole, the KDE terminal emulator";
|
||
|
license = "GPLv2";
|
||
|
};
|
||
|
}
|