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