9405df4a82
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
11 lines
224 B
Nix
11 lines
224 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules
|
|
, aspell, qtbase, qttools
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "sonnet";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ aspell qttools ];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
}
|