1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/liboil/default.nix
Jason "Don" O'Conal bdf5a5c20e liboil: fix build on darwin
* force --build=x86_64
2013-07-03 19:57:38 +10:00

27 lines
756 B
Nix

{stdenv, fetchurl, pkgconfig }:
stdenv.mkDerivation rec {
name = "liboil-0.3.17";
src = fetchurl {
url = "${meta.homepage}/download/${name}.tar.gz";
sha256 = "0sgwic99hxlb1av8cm0albzh8myb7r3lpcwxfm606l0bkc3h4pqh";
};
buildInputs = [ pkgconfig ];
patches = [ ./x86_64-cpuid.patch ];
# fix "argb_paint_i386.c:53:Incorrect register `%rax' used with `l' suffix"
# errors
configureFlags = stdenv.lib.optional stdenv.isDarwin "--build=x86_64";
meta = with stdenv.lib; {
description = "A library of simple functions that are optimized for various CPUs";
homepage = http://liboil.freedesktop.org;
license = libraries.bsd2;
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.all;
};
}