summary refs log blame commit diff
path: root/pkgs/development/libraries/alure/default.nix
blob: fe2892c9627052a7384f23e86455ec1a9f77a120 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                                           
                                

    
{ stdenv, fetchurl, cmake, openal }:

stdenv.mkDerivation rec {
  name = "alure-${version}";
  version = "1.2";

  src = fetchurl {
    url = "http://kcat.strangesoft.net/alure-releases/alure-${version}.tar.bz2";
    sha256 = "0w8gsyqki21s1qb2s5ac1kj08i6nc937c0rr08xbw9w9wvd6lpj6";
  };

  buildInputs = [ cmake openal ];

  meta = with stdenv.lib; {
    description = "A utility library to help manage common tasks with OpenAL applications";
    homepage = http://kcat.strangesoft.net/alure.html;
    license = licenses.mit;
    platforms = platforms.linux;
  };
}