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
225 B
Nix
Raw Normal View History

{ mkDerivation
, extra-cmake-modules
, aspell, qtbase, qttools
2016-04-21 15:32:21 +00:00
}:
mkDerivation {
2022-02-23 17:28:27 +00:00
pname = "sonnet";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ aspell qttools ];
propagatedBuildInputs = [ qtbase ];
2016-04-21 15:32:21 +00:00
}