Skip to content

Commit

Permalink
nix: add missing libxml2
Browse files Browse the repository at this point in the history
  • Loading branch information
pbek committed Sep 22, 2023
1 parent b2ff617 commit df69571
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = [
pkgs.gnumake
pkgs.nodejs
pkgs.php82
pkgs.php82Packages.composer
nativeBuildInputs = with pkgs; [
gnumake
nodejs
php82
php82Packages.composer
libxml2 # for xmllint
];
}

0 comments on commit df69571

Please sign in to comment.