Skip to content

Commit a112b08

Browse files
committed
Add missing dependencies for development environment
In this commit, the missing dependencies for the development environment have been added to the shell.nix file. The additions include packages like curl and unzip to ensure that all necessary dependencies are available for the development environment setup. This modification enhances the development process by providing the required tools and libraries.
1 parent af7ec0f commit a112b08

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

shell.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{ pkgs ? import <nixpkgs> {} }:
22
pkgs.mkShell {
33
buildInputs = [
4+
pkgs.curl
45
pkgs.ghostscript
56
pkgs.gnumake
67
pkgs.gnused
78
pkgs.sqlite
9+
pkgs.unzip
810
];
911
}

0 commit comments

Comments
 (0)