base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / al / alure2 / package.nix
blobf18a2a3434e164b985d9c3dade9c9c782096091e
1 { lib, stdenv, fetchFromGitHub, cmake, openal, libvorbis, opusfile, libsndfile }:
3 stdenv.mkDerivation rec {
4   pname = "alure2";
5   version = "unstable-2020-02-06";
7   src = fetchFromGitHub {
8     owner = "kcat";
9     repo = "alure";
10     rev = "50f92fe528e77da82197fd947d1cf9b0a82a0c7d";
11     sha256 = "1gmc1yfhwaj6lik0vn7zv8y23i05f4rw25v2jg34n856jcs02svx";
12   };
14   nativeBuildInputs = [ cmake ];
15   buildInputs = [ openal libvorbis opusfile libsndfile ];
17   meta = with lib; {
18     description = "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 ];
23   };