giblib: fix compat with imlib2 multiple outputs
This commit is contained in:
parent
7974d7493a
commit
1d08acb305
1 changed files with 6 additions and 3 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue