diff options
author | Preston Pan <ret2pop@gmail.com> | 2025-01-09 16:32:55 -0800 |
---|---|---|
committer | Preston Pan <ret2pop@gmail.com> | 2025-01-09 16:32:55 -0800 |
commit | ef9ab1fd141f4057d41f2d6ed8ab8d67c44894d5 (patch) | |
tree | e4005b7a641303b021eb54c2aae5676b5f92a72d /flake.nix | |
parent | 1fd608288ee47c2c560817f12f14b21069fed2f6 (diff) |
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 ]; }; }; } |