b5f92a349c
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
11 lines
244 B
Nix
11 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 ];
|
|
}
|