mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 14:40:07 +03:00
12 lines
205 B
Nix
12 lines
205 B
Nix
{ stdenv, kde, kdelibs, kde_baseapps }:
|
|
|
|
kde {
|
|
|
|
buildInputs = [ kdelibs kde_baseapps ];
|
|
|
|
meta = {
|
|
description = "Konsole, the KDE terminal emulator";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|