My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/libraries/imlib2/default.nix

13 lines
369 B

{ stdenv, fetchurl, x11, libjpeg, libtiff, libungif, libpng, bzip2, pkgconfig }:
stdenv.mkDerivation {
name = "imlib2-1.4.4";
src = fetchurl {
url = mirror://sourceforge/enlightenment/imlib2-1.4.4.tar.gz;
sha256 = "163162aifak8ya17brzqwjlr8ywz40s2s3573js5blcc1g4m5pm4";
};
buildInputs = [ x11 libjpeg libtiff libungif libpng bzip2 pkgconfig ];
}