Merge pull request #18028 from rnhmjoj/imv

imv: fix failing build
This commit is contained in:
Joachim F
2016-08-27 12:23:45 +02:00
committed by GitHub

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";