mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
11 lines
252 B
Nix
11 lines
252 B
Nix
{ kdeFramework, lib, ecm, kcoreaddons, ki18n, kpty
|
|
, kservice
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kdesu";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ ecm ];
|
|
propagatedBuildInputs = [ kcoreaddons ki18n kpty kservice ];
|
|
}
|