summary refs log tree commit diff
path: root/pkgs/development/tools/hobbes
diff options
context:
space:
mode:
authorsophrosyne97 <joshuaortiz@tutanota.com>2021-05-21 19:13:30 -0400
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-05-21 19:09:44 -0700
commitf55c2cd9cd018530579a6f2f96c228aa7f21beff (patch)
tree67b26f0ace7131f7bc770bc71ab9d35c2b2bf540 /pkgs/development/tools/hobbes
parent1c4571cf463a1b3d3730a0a9e1909836e45118e7 (diff)
downloadnixpkgs-f55c2cd9cd018530579a6f2f96c228aa7f21beff.tar
nixpkgs-f55c2cd9cd018530579a6f2f96c228aa7f21beff.tar.gz
nixpkgs-f55c2cd9cd018530579a6f2f96c228aa7f21beff.tar.bz2
nixpkgs-f55c2cd9cd018530579a6f2f96c228aa7f21beff.tar.lz
nixpkgs-f55c2cd9cd018530579a6f2f96c228aa7f21beff.tar.xz
nixpkgs-f55c2cd9cd018530579a6f2f96c228aa7f21beff.tar.zst
nixpkgs-f55c2cd9cd018530579a6f2f96c228aa7f21beff.zip
hobbes: fix build error
Diffstat (limited to 'pkgs/development/tools/hobbes')
-rw-r--r--pkgs/development/tools/hobbes/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/tools/hobbes/default.nix b/pkgs/development/tools/hobbes/default.nix
index 667997ddff4..f4741a390ed 100644
--- a/pkgs/development/tools/hobbes/default.nix
+++ b/pkgs/development/tools/hobbes/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, cmake, llvm_6, ncurses, readline, zlib }:
+{ lib, stdenv, fetchFromGitHub, cmake, llvm_6, ncurses, readline, zlib, libxml2 }:
 
 stdenv.mkDerivation {
   name = "hobbes";
@@ -20,6 +20,7 @@ stdenv.mkDerivation {
     ncurses
     readline
     zlib
+    libxml2
   ];
 
   doCheck = false; # Running tests in NixOS hangs. See https://git.io/JvK7R.