about summary refs log tree commit diff
path: root/pkgs/tools/misc/staruml
diff options
context:
space:
mode:
authoruHOOCCOOHu <hooccooh1896@gmail.com>2019-04-28 19:59:51 +0800
committeruHOOCCOOHu <hooccooh1896@gmail.com>2019-04-28 20:04:51 +0800
commit8b85bbfc342929d90cd242c70ccdaf07ed81f7d9 (patch)
treeef18ff269ebbaef2d22399f037de76972ddedf2e /pkgs/tools/misc/staruml
parent9dd1bbc9f39fced89aef15de3cc4f50da1fca3d6 (diff)
downloadnixlib-8b85bbfc342929d90cd242c70ccdaf07ed81f7d9.tar
nixlib-8b85bbfc342929d90cd242c70ccdaf07ed81f7d9.tar.gz
nixlib-8b85bbfc342929d90cd242c70ccdaf07ed81f7d9.tar.bz2
nixlib-8b85bbfc342929d90cd242c70ccdaf07ed81f7d9.tar.lz
nixlib-8b85bbfc342929d90cd242c70ccdaf07ed81f7d9.tar.xz
nixlib-8b85bbfc342929d90cd242c70ccdaf07ed81f7d9.tar.zst
nixlib-8b85bbfc342929d90cd242c70ccdaf07ed81f7d9.zip
staruml: fix dependency libexpat.so.1
Diffstat (limited to 'pkgs/tools/misc/staruml')
-rw-r--r--pkgs/tools/misc/staruml/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/staruml/default.nix b/pkgs/tools/misc/staruml/default.nix
index a7518625771f..bf024eb009c8 100644
--- a/pkgs/tools/misc/staruml/default.nix
+++ b/pkgs/tools/misc/staruml/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, makeWrapper
 , dpkg, patchelf
 , gtk2, glib, gdk_pixbuf, alsaLib, nss, nspr, GConf, cups, libgcrypt, dbus, systemd
-, libXdamage }:
+, libXdamage, expat }:
 
 let
   inherit (stdenv) lib;
   LD_LIBRARY_PATH = lib.makeLibraryPath
-    [ glib gtk2 gdk_pixbuf alsaLib nss nspr GConf cups libgcrypt dbus libXdamage ];
+    [ glib gtk2 gdk_pixbuf alsaLib nss nspr GConf cups libgcrypt dbus libXdamage expat ];
 in
 stdenv.mkDerivation rec {
   version = "2.8.1";