epoxy: 1.2 -> 1.3.1
This commit is contained in:
parent
952def0e3c
commit
0bbe804f0a
@ -1,24 +1,20 @@
|
|||||||
{ stdenv, fetchurl, autoconf, autogen, automake, gettext, libX11
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, utilmacros, python
|
||||||
, mesa, pkgconfig, python, utilmacros
|
, mesa, libX11
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "epoxy-${version}";
|
name = "epoxy-${version}";
|
||||||
version = "1.2";
|
version = "1.3.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/anholt/libepoxy/archive/v${version}.tar.gz";
|
owner = "anholt";
|
||||||
sha256 = "1xp8g6b7xlbym2rj4vkbl6xpb7ijq7glpv656mc7k9b01x22ihs2";
|
repo = "libepoxy";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0dfkd4xbp7v5gwsf6qwaraz54yzizf3lj5ymyc0msjn0adq3j5yl";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
nativeBuildInputs = [ autoreconfHook pkgconfig utilmacros python ];
|
||||||
autoconf autogen automake gettext libX11 mesa pkgconfig python
|
buildInputs = [ mesa libX11 ];
|
||||||
utilmacros
|
|
||||||
];
|
|
||||||
|
|
||||||
configureScript = ''
|
|
||||||
./autogen.sh --prefix="$out"
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A library for handling OpenGL function pointer management";
|
description = "A library for handling OpenGL function pointer management";
|
||||||
|
Loading…
Reference in New Issue
Block a user