diff options
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ { - description = "A Nix flake for creating a devshell and build environment for umami"; + description = "A Nix flake for creating a devshell and build environment for the umami protocol"; inputs = { nixpkgs.url = "nixpkgs/nixos-unstable"; @@ -18,7 +18,7 @@ src = ./.; - buildInputs = with pkgs; [ clang gnumake valgrind bear openssl ]; + buildInputs = with pkgs; [ clang gnumake valgrind bear openssl doxygen ]; buildPhase = "make"; @@ -35,7 +35,7 @@ }; in pkgs.mkShell { - buildInputs = with pkgs; [ clang gnumake valgrind bear openssl ]; + buildInputs = with pkgs; [ clang gnumake valgrind bear openssl doxygen ]; }; }; } |