mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
15 lines
229 B
Nix
15 lines
229 B
Nix
{ kdeFramework
|
|
, lib
|
|
, ecm
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "oxygen-icons5";
|
|
meta = {
|
|
license = lib.licenses.lgpl3Plus;
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
outputs = [ "out" ];
|
|
nativeBuildInputs = [ ecm ];
|
|
}
|