depot/pkgs/development/libraries/kde-frameworks/sonnet.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
244 B
Nix
Raw Normal View History

{ mkDerivation
, extra-cmake-modules
, aspell, hunspell, qtbase, qttools
}:
mkDerivation {
pname = "sonnet";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ aspell hunspell qttools ];
propagatedBuildInputs = [ qtbase ];
}