imv: add fontconfig dependency

This commit is contained in:
Robin Gloster
2016-08-27 21:53:27 +00:00
parent a2a337c562
commit c0e42fe741

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchgit, SDL2, SDL2_ttf, freeimage }:
{ stdenv, fetchgit, SDL2, SDL2_ttf, freeimage, fontconfig }:
stdenv.mkDerivation rec {
name = "imv-${version}";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
sha256 = "0fhc944g7b61jrkd4wn1piq6dkpabsbxpm80pifx9dqmj16sf0pf";
};
buildInputs = [ SDL2 SDL2_ttf freeimage ];
buildInputs = [ SDL2 SDL2_ttf freeimage fontconfig ];
configurePhase = "substituteInPlace Makefile --replace /usr $out";