waffle: init at 1.6.1

This commit is contained in:
Sebastian Neubauer 2020-10-28 11:16:22 +01:00
parent 65f4c39a40
commit 156fe5442e
2 changed files with 56 additions and 0 deletions

View file

@ -0,0 +1,54 @@
{ stdenv
, fetchFromGitLab
, lib
, cmake
, libGL
, libglvnd
, makeWrapper
, pkg-config
, wayland
, libxcb
, libX11
}:
stdenv.mkDerivation rec {
pname = "waffle";
version = "1.6.1";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "mesa";
repo = "waffle";
rev = "v${version}";
sha256 = "0s8gislmhccfa04zsj1yqk97lscbbnmxirr2zm4q3p8ybmpfhpqr";
};
buildInputs = [
libGL
libglvnd
libX11
libxcb
wayland
];
nativeBuildInputs = [
cmake
makeWrapper
pkg-config
];
cmakeFlags = [ "-Dplatforms=x11,wayland" ];
postInstall = ''
wrapProgram $out/bin/wflinfo \
--prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ libGL libglvnd ]}
'';
meta = with lib; {
description = "A cross-platform C library that allows one to defer selection of an OpenGL API and window system until runtime";
homepage = "http://www.waffle-gl.org/";
license = licenses.bsd2;
platforms = platforms.mesaPlatforms;
maintainers = with maintainers; [ Flakebi ];
};
}

View file

@ -16045,6 +16045,8 @@ in
stdenv = gcc6Stdenv; # upstream code incompatible with gcc7
};
waffle = callPackage ../development/libraries/waffle { };
wally-cli = callPackage ../development/tools/wally-cli { };
wavpack = callPackage ../development/libraries/wavpack { };