Skip to content

Commit

Permalink
Merge pull request NixOS#76635 from McSinyx/alure2
Browse files Browse the repository at this point in the history
alure2: init at unstable-2020-01-09
  • Loading branch information
aanderse committed Jan 12, 2020
2 parents b108fd5 + 86c0e79 commit cac169e
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Expand Up @@ -4430,6 +4430,12 @@
githubId = 158568;
name = "Matthias C. M. Troffaes";
};
McSinyx = {
email = "vn.mcsinyx@gmail.com";
github = "McSinyx";
githubId = 13689192;
name = "Nguyễn Gia Phong";
};
mdaiter = {
email = "mdaiter8121@gmail.com";
github = "mdaiter";
Expand Down
24 changes: 24 additions & 0 deletions pkgs/development/libraries/alure2/default.nix
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -10778,6 +10778,8 @@ in

alure = callPackage ../development/libraries/alure { };

alure2 = callPackage ../development/libraries/alure2 { };

agg = callPackage ../development/libraries/agg { };

allegro = allegro4;
Expand Down

0 comments on commit cac169e

Please sign in to comment.