nixpkgs/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
2016-04-21 17:32:21 +02:00
}:
mkDerivation {
2022-02-23 18:28:27 +01:00
pname = "sonnet";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ aspell hunspell qttools ];
propagatedBuildInputs = [ qtbase ];
2016-04-21 17:32:21 +02:00
}