giblib: fix compat with imlib2 multiple outputs

This commit is contained in:
Franz Pletz 2016-11-23 01:31:44 +01:00
parent 7974d7493a
commit 1d08acb305
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -2,16 +2,19 @@
stdenv.mkDerivation rec {
name = "giblib-1.2.4";
src = fetchurl {
url = "http://linuxbrit.co.uk/downloads/${name}.tar.gz";
sha256 = "1b4bmbmj52glq0s898lppkpzxlprq9aav49r06j2wx4dv3212rhp";
};
buildInputs = [xlibsWrapper imlib2];
buildInputs = [ xlibsWrapper ];
propagatedBuildInputs = [ imlib2 ];
meta = {
homepage = http://linuxbrit.co.uk/giblib/;
description = "wrapper library for imlib2, and other stuff";
platforms = stdenv.lib.platforms.unix;
license = stdenv.lib.licenses.mit;
};
}