bb584b27e9
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
11 lines
225 B
Nix
11 lines
225 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules
|
|
, aspell, qtbase, qttools
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "sonnet";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ aspell qttools ];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
}
|