summary refs log tree commit diff
path: root/pkgs/development/libraries/imlib2/default.nix
blob: d77e2052f8115e5935bf45447955c70657b37401 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl, x11, libjpeg, libtiff, libungif, libpng, bzip2, pkgconfig }:

stdenv.mkDerivation rec {
  name = "imlib2-1.4.5";
  
  src = fetchurl {
    url = "mirror://sourceforge/enlightenment/${name}.tar.bz2";
    sha256 = "0nllbhf8vfwdm40z35yj27n83k2mjf5vbd62khad4f0qjf9hsw14";
  };
  
  buildInputs = [ x11 libjpeg libtiff libungif libpng bzip2 ];

  nativeBuildInputs = [ pkgconfig ];

  meta = {
    platforms = stdenv.lib.platforms.gnu; # random choice
  };
}