summaryrefslogtreecommitdiff
path: root/dged.nix
diff options
context:
space:
mode:
Diffstat (limited to 'dged.nix')
-rw-r--r--dged.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/dged.nix b/dged.nix
index 2a35689..3c090fb 100644
--- a/dged.nix
+++ b/dged.nix
@@ -1,6 +1,5 @@
{ stdenv
, clang-tools
-, gnumake
, bmake
, pkg-config
, tree-sitter
@@ -15,7 +14,6 @@ stdenv.mkDerivation {
doCheck = true;
nativeBuildInputs = [
- gnumake
bmake
pkg-config
clang-tools
@@ -24,6 +22,7 @@ stdenv.mkDerivation {
];
buildPhase = ''
+ bmake build
bmake dged
bmake docs
'';