mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
alure2: init at unstable-2020-01-09
This commit is contained in:
parent
9cb67b4028
commit
86c0e79add
24
pkgs/development/libraries/alure2/default.nix
Normal file
24
pkgs/development/libraries/alure2/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, openal, libvorbis, opusfile, libsndfile }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "alure2";
|
||||
version = "unstable-2020-01-09";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kcat";
|
||||
repo = "alure";
|
||||
rev = "4b7b58d3f0de444d6f26aa705704deb59145f586";
|
||||
sha256 = "0ds18hhy2wpvx498z5hcpzfqz9i60ixsi0cjihyvk20rf4qy12vg";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ openal libvorbis opusfile libsndfile ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A utility library for OpenAL, providing a C++ API and managing common tasks that include file loading, caching, and streaming";
|
||||
homepage = "https://github.com/kcat/alure";
|
||||
license = licenses.zlib;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ McSinyx ];
|
||||
};
|
||||
}
|
@ -10616,6 +10616,8 @@ in
|
||||
|
||||
alure = callPackage ../development/libraries/alure { };
|
||||
|
||||
alure2 = callPackage ../development/libraries/alure2 { };
|
||||
|
||||
agg = callPackage ../development/libraries/agg { };
|
||||
|
||||
allegro = allegro4;
|
||||
|
Loading…
Reference in New Issue
Block a user