1 { lib, stdenv, fetchFromGitHub, cmake, openal, libvorbis, opusfile, libsndfile }:
3 stdenv.mkDerivation rec {
5 version = "unstable-2020-02-06";
7 src = fetchFromGitHub {
10 rev = "50f92fe528e77da82197fd947d1cf9b0a82a0c7d";
11 sha256 = "1gmc1yfhwaj6lik0vn7zv8y23i05f4rw25v2jg34n856jcs02svx";
14 nativeBuildInputs = [ cmake ];
15 buildInputs = [ openal libvorbis opusfile libsndfile ];
18 description = "A utility library for OpenAL, providing a C++ API and managing common tasks that include file loading, caching, and streaming";
19 homepage = "https://github.com/kcat/alure";
20 license = licenses.zlib;
21 platforms = platforms.linux;
22 maintainers = with maintainers; [ McSinyx ];