3
0
Fork 0
forked from mirrors/nixpkgs

profanity: Add libXScrnSaver and libX11 buildInputs

This adds libXScrnSaver and libX11 to the buildInputs.

Thanks to @aszlig for spotting this.
This commit is contained in:
dev.hell 2015-01-04 22:39:24 +00:00
parent 6ba674911f
commit 799f94185f

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, automake, autoconf, pkgconfig, glib, openssl, expat, ncurses, libnotify, libotr, curl, libstrophe }:
{ stdenv, fetchurl, automake, autoconf, pkgconfig, glib, openssl, expat, ncurses, libnotify, libotr, curl, libstrophe, libXScrnSaver, libX11 }:
stdenv.mkDerivation rec {
name = "profanity-${version}";
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "0qzwqxcxf695z3gf94psd2x619vlp4hkkjmkrpsla1ns0f6v6dkl";
};
buildInputs = [ automake autoconf pkgconfig glib openssl expat ncurses libnotify libotr curl libstrophe ];
buildInputs = [ automake autoconf pkgconfig glib openssl expat ncurses libnotify libotr curl libstrophe libXScrnSaver libX11 ];
preConfigure = "sh bootstrap.sh";