mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 00:34:00 +00:00
15 lines
292 B
Nix
15 lines
292 B
Nix
{ mkDerivation, lib
|
|
, extra-cmake-modules
|
|
, aspell, qtbase, qttools
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "sonnet";
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ aspell qttools ];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
}
|