nixpkgs/pkgs/development/libraries/epoxy/default.nix

40 lines
1.0 KiB
Nix
Raw Normal View History

2015-08-13 22:00:18 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, utilmacros, python
, libGL, libX11
}:
2018-03-18 12:34:11 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
name = "epoxy-${version}";
2018-03-01 23:26:09 +00:00
version = "1.5.0";
2015-08-13 22:00:18 +00:00
src = fetchFromGitHub {
owner = "anholt";
repo = "libepoxy";
2018-03-01 23:26:09 +00:00
rev = "${version}";
sha256 = "1ixpqb10pmdy3n9nxd5inflig9dal5502ggadcns5b58j6jr0yv0";
};
outputs = [ "out" "dev" ];
2015-10-07 20:52:16 +00:00
2015-08-13 22:00:18 +00:00
nativeBuildInputs = [ autoreconfHook pkgconfig utilmacros python ];
buildInputs = [ libGL libX11 ];
2018-03-18 12:34:11 +00:00
preConfigure = optionalString stdenv.isDarwin ''
2015-10-27 07:38:00 +00:00
substituteInPlace configure --replace build_glx=no build_glx=yes
substituteInPlace src/dispatch_common.h --replace "PLATFORM_HAS_GLX 0" "PLATFORM_HAS_GLX 1"
'';
patches = [ ./libgl-path.patch ];
NIX_CFLAGS_COMPILE = ''-DLIBGL_PATH="${getLib libGL}/lib"'';
2018-03-18 12:34:11 +00:00
meta = {
description = "A library for handling OpenGL function pointer management";
homepage = https://github.com/anholt/libepoxy;
license = licenses.mit;
maintainers = [ maintainers.goibhniu ];
2015-05-23 00:04:06 +00:00
platforms = platforms.unix;
};
}