summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorAaron Andersen <aaron@fosslib.net>2020-01-12 10:11:56 -0500
committerGitHub <noreply@github.com>2020-01-12 10:11:56 -0500
commitcac169ed9e13b53d4ca4796b716d4c5a12d9af62 (patch)
tree109cd8f26252030aa8b648704d44de513b1a4ea0 /pkgs/development/libraries
parentb108fd5843a2590ae0dc3c9d9945ac43594934d5 (diff)
parent86c0e79add90cf54280a9f7f08e8c857f8d4882d (diff)
downloadnixpkgs-cac169ed9e13b53d4ca4796b716d4c5a12d9af62.tar
nixpkgs-cac169ed9e13b53d4ca4796b716d4c5a12d9af62.tar.gz
nixpkgs-cac169ed9e13b53d4ca4796b716d4c5a12d9af62.tar.bz2
nixpkgs-cac169ed9e13b53d4ca4796b716d4c5a12d9af62.tar.lz
nixpkgs-cac169ed9e13b53d4ca4796b716d4c5a12d9af62.tar.xz
nixpkgs-cac169ed9e13b53d4ca4796b716d4c5a12d9af62.tar.zst
nixpkgs-cac169ed9e13b53d4ca4796b716d4c5a12d9af62.zip
Merge pull request #76635 from McSinyx/alure2
alure2: init at unstable-2020-01-09
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/alure2/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/libraries/alure2/default.nix b/pkgs/development/libraries/alure2/default.nix
new file mode 100644
index 00000000000..91919873fa6
--- /dev/null
+++ b/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 ];
+  };
+}