nixpkgs/pkgs/development/libraries/kde-frameworks/sonnet.nix
André Vitor de Lima Matos e8d85c6c8c
kde-frameworks: 5.87 -> 5.89
2021-12-19 05:00:20 +01:00

12 lines
224 B
Nix

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