summaryrefslogtreecommitdiff
path: root/dged.nix
diff options
context:
space:
mode:
Diffstat (limited to 'dged.nix')
-rw-r--r--dged.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/dged.nix b/dged.nix
index 5e2abbb..2a35689 100644
--- a/dged.nix
+++ b/dged.nix
@@ -6,21 +6,26 @@
, tree-sitter
, bear
, lib
+, doxygen
}:
stdenv.mkDerivation {
name = "dged";
src = ./.;
+ doCheck = true;
+
nativeBuildInputs = [
gnumake
bmake
pkg-config
clang-tools
bear
+ doxygen
];
buildPhase = ''
bmake dged
+ bmake docs
'';
installPhase = ''