14 lines
233 B
Nix
14 lines
233 B
Nix
|
{ kdeFramework, lib
|
||
|
, extra-cmake-modules
|
||
|
, hunspell
|
||
|
}:
|
||
|
|
||
|
kdeFramework {
|
||
|
name = "sonnet";
|
||
|
nativeBuildInputs = [ extra-cmake-modules ];
|
||
|
buildInputs = [ hunspell ];
|
||
|
meta = {
|
||
|
maintainers = [ lib.maintainers.ttuegel ];
|
||
|
};
|
||
|
}
|