Files
nixpkgs/pkgs/by-name/al/alure2/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

39 lines
817 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
cmake,
openal,
libvorbis,
opusfile,
libsndfile,
}:
stdenv.mkDerivation {
pname = "alure2";
version = "0-unstable-2020-02-06";
src = fetchFromGitHub {
owner = "kcat";
repo = "alure";
rev = "50f92fe528e77da82197fd947d1cf9b0a82a0c7d";
sha256 = "1gmc1yfhwaj6lik0vn7zv8y23i05f4rw25v2jg34n856jcs02svx";
};
nativeBuildInputs = [ cmake ];
buildInputs = [
openal
libvorbis
opusfile
libsndfile
];
meta = with lib; {
description = "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 ];
};
}