2013-01-31 21:16:31 +00:00
|
|
|
{stdenv, fetchurl, pkgconfig }:
|
2008-10-26 08:40:11 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-01-31 21:16:31 +00:00
|
|
|
name = "liboil-0.3.17";
|
2008-10-26 08:40:11 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/download/${name}.tar.gz";
|
2013-01-31 21:16:31 +00:00
|
|
|
sha256 = "0sgwic99hxlb1av8cm0albzh8myb7r3lpcwxfm606l0bkc3h4pqh";
|
2008-10-26 08:40:11 +00:00
|
|
|
};
|
|
|
|
|
2013-01-31 21:16:31 +00:00
|
|
|
patches = [ ./x86_64-cpuid.patch ];
|
2008-10-26 08:40:11 +00:00
|
|
|
|
2016-09-01 10:07:23 +01:00
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
2015-10-06 16:03:27 +01:00
|
|
|
outputBin = "dev"; # oil-bugreport
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2013-07-03 10:52:46 +01: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 14:42:39 +00:00
|
|
|
# fixes a cast in inline asm: easier than patching
|
|
|
|
buildFlags = stdenv.lib.optional stdenv.isDarwin "CFLAGS=-fheinous-gnu-extensions";
|
|
|
|
|
2013-07-03 10:52:46 +01:00
|
|
|
meta = with stdenv.lib; {
|
2009-03-03 13:27:40 +00:00
|
|
|
description = "A library of simple functions that are optimized for various CPUs";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://liboil.freedesktop.org";
|
2013-07-04 17:13:20 +01:00
|
|
|
license = licenses.bsd2;
|
2013-07-03 10:52:46 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.all;
|
2008-10-26 08:40:11 +00:00
|
|
|
};
|
|
|
|
}
|