2013-01-31 22:16:31 +01:00
|
|
|
{stdenv, fetchurl, pkgconfig }:
|
2008-10-26 09:40:11 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-01-31 22:16:31 +01:00
|
|
|
name = "liboil-0.3.17";
|
2008-10-26 09:40:11 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/download/${name}.tar.gz";
|
2013-01-31 22:16:31 +01:00
|
|
|
sha256 = "0sgwic99hxlb1av8cm0albzh8myb7r3lpcwxfm606l0bkc3h4pqh";
|
2008-10-26 09:40:11 +01:00
|
|
|
};
|
|
|
|
|
2013-01-31 22:16:31 +01:00
|
|
|
patches = [ ./x86_64-cpuid.patch ];
|
2008-10-26 09:40:11 +01:00
|
|
|
|
2015-10-28 18:56:00 +01:00
|
|
|
outputs = [ "dev" "out" "docdev" ];
|
2015-10-06 17:03:27 +02:00
|
|
|
outputBin = "dev"; # oil-bugreport
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2013-07-03 11:52:46 +02:00
|
|
|
# fix "argb_paint_i386.c:53:Incorrect register `%rax' used with `l' suffix"
|
|
|
|
# errors
|
|
|
|
configureFlags = stdenv.lib.optional stdenv.isDarwin "--build=x86_64";
|
|
|
|
|
2015-02-28 15:42:39 +01:00
|
|
|
# fixes a cast in inline asm: easier than patching
|
|
|
|
buildFlags = stdenv.lib.optional stdenv.isDarwin "CFLAGS=-fheinous-gnu-extensions";
|
|
|
|
|
2013-07-03 11:52:46 +02:00
|
|
|
meta = with stdenv.lib; {
|
2009-03-03 14:27:40 +01:00
|
|
|
description = "A library of simple functions that are optimized for various CPUs";
|
2013-07-03 11:52:46 +02:00
|
|
|
homepage = http://liboil.freedesktop.org;
|
2013-07-04 18:13:20 +02:00
|
|
|
license = licenses.bsd2;
|
2013-07-03 11:52:46 +02:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.all;
|
2008-10-26 09:40:11 +01:00
|
|
|
};
|
|
|
|
}
|