diff options
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/default.nix b/default.nix index 8134449..27f148f 100644 --- a/default.nix +++ b/default.nix | |||
@@ -47,6 +47,7 @@ in rec { | |||
47 | [ extra-cmake-modules qtbase ]; | 47 | [ extra-cmake-modules qtbase ]; |
48 | 48 | ||
49 | src = kasyncSrc; | 49 | src = kasyncSrc; |
50 | doCheck = true; | ||
50 | 51 | ||
51 | inherit cmakeBuildType; | 52 | inherit cmakeBuildType; |
52 | }; | 53 | }; |
@@ -58,6 +59,8 @@ in rec { | |||
58 | [ extra-cmake-modules qtbase kcoreaddons kcodecs kdeApplications.kmime cyrus_sasl ]; | 59 | [ extra-cmake-modules qtbase kcoreaddons kcodecs kdeApplications.kmime cyrus_sasl ]; |
59 | 60 | ||
60 | src = kimap2Src; | 61 | src = kimap2Src; |
62 | doCheck = true; | ||
63 | |||
61 | inherit cmakeBuildType; | 64 | inherit cmakeBuildType; |
62 | }; | 65 | }; |
63 | 66 | ||
@@ -68,6 +71,7 @@ in rec { | |||
68 | [ extra-cmake-modules qtbase qtxmlpatterns kcoreaddons ]; | 71 | [ extra-cmake-modules qtbase qtxmlpatterns kcoreaddons ]; |
69 | 72 | ||
70 | src = kdav2Src; | 73 | src = kdav2Src; |
74 | doCheck = true; | ||
71 | 75 | ||
72 | inherit cmakeBuildType; | 76 | inherit cmakeBuildType; |
73 | }; | 77 | }; |
@@ -90,6 +94,7 @@ in rec { | |||
90 | ]; | 94 | ]; |
91 | 95 | ||
92 | src = sinkSrc; | 96 | src = sinkSrc; |
97 | doCheck = true; | ||
93 | 98 | ||
94 | inherit cmakeBuildType; | 99 | inherit cmakeBuildType; |
95 | }; | 100 | }; |
@@ -118,5 +123,8 @@ in rec { | |||
118 | dontStrip = if (cmakeBuildType == "Debug") then 1 else 0; | 123 | dontStrip = if (cmakeBuildType == "Debug") then 1 else 0; |
119 | 124 | ||
120 | src = kubeSrc; | 125 | src = kubeSrc; |
126 | doCheck = true; | ||
127 | |||
128 | inherit cmakeBuildType; | ||
121 | }; | 129 | }; |
122 | } | 130 | } |