lol
1{ stdenv, fetchurl, cmake, openal }:
2
3stdenv.mkDerivation rec {
4 name = "alure-${version}";
5 version = "1.2";
6
7 src = fetchurl {
8 url = "http://kcat.strangesoft.net/alure-releases/alure-${version}.tar.bz2";
9 sha256 = "0w8gsyqki21s1qb2s5ac1kj08i6nc937c0rr08xbw9w9wvd6lpj6";
10 };
11
12 buildInputs = [ cmake openal ];
13
14 meta = with stdenv.lib; {
15 description = "A utility library to help manage common tasks with OpenAL applications";
16 homepage = http://kcat.strangesoft.net/alure.html;
17 license = licenses.mit;
18 platforms = platforms.linux;
19 };
20}