summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/default.nix b/default.nix
index 8ba6c08..423f02d 100644
--- a/default.nix
+++ b/default.nix
@@ -34,7 +34,9 @@
34 cmakeBuildType ? "Debug" 34 cmakeBuildType ? "Debug"
35}: 35}:
36 36
37rec { 37let
38 stdenv = nixpkgs.stdenv;
39in rec {
38 kasync = stdenv.mkDerivation { 40 kasync = stdenv.mkDerivation {
39 name = "kasync"; 41 name = "kasync";
40 nativeBuildInputs = with nixpkgs; [ cmake ninja ccache ]; 42 nativeBuildInputs = with nixpkgs; [ cmake ninja ccache ];