nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 mkKdeDerivation,
3 qtdeclarative,
4 qttools,
5 pkg-config,
6 aspell,
7 hunspell,
8}:
9mkKdeDerivation {
10 pname = "sonnet";
11
12 extraNativeBuildInputs = [
13 qttools
14 pkg-config
15 ];
16 extraBuildInputs = [
17 qtdeclarative
18 aspell
19 hunspell
20 ];
21 meta.mainProgram = "parsetrigrams6";
22}