depot/third_party/nixpkgs/pkgs/development/libraries/alure/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

21 lines
572 B
Nix

{ lib, stdenv, fetchurl, cmake, openal }:
stdenv.mkDerivation rec {
pname = "alure";
version = "1.2";
src = fetchurl {
url = "http://kcat.strangesoft.net/alure-releases/alure-${version}.tar.bz2";
sha256 = "0w8gsyqki21s1qb2s5ac1kj08i6nc937c0rr08xbw9w9wvd6lpj6";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ openal ];
meta = with lib; {
description = "Utility library to help manage common tasks with OpenAL applications";
homepage = "https://github.com/kcat/alure";
license = licenses.mit;
platforms = platforms.linux;
};
}