mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
787f322540
... after auto-removing some kinds of files by default. In some cases I let them be removed and in others I let them be put into $docdev. That was more due to general indecisiveness on this question than any reasons in the particular cases.
33 lines
977 B
Nix
33 lines
977 B
Nix
{stdenv, fetchurl, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "liboil-0.3.17";
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/download/${name}.tar.gz";
|
|
sha256 = "0sgwic99hxlb1av8cm0albzh8myb7r3lpcwxfm606l0bkc3h4pqh";
|
|
};
|
|
|
|
patches = [ ./x86_64-cpuid.patch ];
|
|
|
|
outputs = [ "dev" "out" "docdev" ];
|
|
outputBin = "dev"; # oil-bugreport
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
# fix "argb_paint_i386.c:53:Incorrect register `%rax' used with `l' suffix"
|
|
# errors
|
|
configureFlags = stdenv.lib.optional stdenv.isDarwin "--build=x86_64";
|
|
|
|
# fixes a cast in inline asm: easier than patching
|
|
buildFlags = stdenv.lib.optional stdenv.isDarwin "CFLAGS=-fheinous-gnu-extensions";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A library of simple functions that are optimized for various CPUs";
|
|
homepage = http://liboil.freedesktop.org;
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|