3
0
Fork 0
forked from mirrors/nixpkgs

imv: fix failing build

This commit is contained in:
rnhmjoj 2016-08-27 06:42:44 +02:00
parent 76927783e0
commit f0daeb575a
No known key found for this signature in database
GPG key ID: 362BB82B7E496B7C

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