1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

imlib2: enable libid3tag support

This commit is contained in:
Herwig Hochleitner 2017-09-29 20:40:15 +02:00
parent 5eccf40eb4
commit 59b35013bc

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, libjpeg, libtiff, giflib, libpng, bzip2, pkgconfig
, freetype
, freetype, libid3tag
, x11Support ? true, xlibsWrapper ? null }:
with stdenv.lib;
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
sha256 = "0wm2q2xlkbm71k7mw2jyzbxgzylrkcj5yh6nq58w5gybhp98qs9z";
};
buildInputs = [ libjpeg libtiff giflib libpng bzip2 freetype ]
buildInputs = [ libjpeg libtiff giflib libpng bzip2 freetype libid3tag ]
++ optional x11Support xlibsWrapper;
nativeBuildInputs = [ pkgconfig ];