mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-27 23:33:30 +00:00
12 lines
157 B
Nix
12 lines
157 B
Nix
|
{ kde, kdelibs }:
|
||
|
|
||
|
kde rec {
|
||
|
name = "kde-style-phase";
|
||
|
|
||
|
buildInputs = [ kdelibs ];
|
||
|
|
||
|
meta = {
|
||
|
description = "Phase, a widget style for KDE";
|
||
|
};
|
||
|
}
|