2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchurl, cmake, openal }:
|
2016-05-03 02:19:19 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "alure";
|
2016-05-03 02:19:19 -07:00
|
|
|
version = "1.2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://kcat.strangesoft.net/alure-releases/alure-${version}.tar.bz2";
|
|
|
|
sha256 = "0w8gsyqki21s1qb2s5ac1kj08i6nc937c0rr08xbw9w9wvd6lpj6";
|
|
|
|
};
|
|
|
|
|
2020-12-30 23:48:55 -08:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ openal ];
|
2016-05-03 02:19:19 -07:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2016-05-03 02:19:19 -07:00
|
|
|
description = "A utility library to help manage common tasks with OpenAL applications";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://kcat.strangesoft.net/alure.html";
|
2016-05-03 02:19:19 -07:00
|
|
|
license = licenses.mit;
|
2016-08-10 20:29:45 -07:00
|
|
|
platforms = platforms.linux;
|
2016-05-03 02:19:19 -07:00
|
|
|
};
|
|
|
|
}
|