12 lines
244 B
Nix
12 lines
244 B
Nix
|
{ mkDerivation
|
||
|
, extra-cmake-modules
|
||
|
, aspell, hunspell, qtbase, qttools
|
||
|
}:
|
||
|
|
||
|
mkDerivation {
|
||
|
pname = "sonnet";
|
||
|
nativeBuildInputs = [ extra-cmake-modules ];
|
||
|
buildInputs = [ aspell hunspell qttools ];
|
||
|
propagatedBuildInputs = [ qtbase ];
|
||
|
}
|