Skip to content

Commit

Permalink
Add missing dependencies for development environment
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
placek committed Apr 19, 2024
1 parent af7ec0f commit a112b08
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.curl
pkgs.ghostscript
pkgs.gnumake
pkgs.gnused
pkgs.sqlite
pkgs.unzip
];
}

0 comments on commit a112b08

Please sign in to comment.