at 24.11-pre 21 lines 574 B view raw
1{ lib, stdenv, fetchurl, cmake, openal }: 2 3stdenv.mkDerivation rec { 4 pname = "alure"; 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 nativeBuildInputs = [ cmake ]; 13 buildInputs = [ openal ]; 14 15 meta = with lib; { 16 description = "A utility library to help manage common tasks with OpenAL applications"; 17 homepage = "https://github.com/kcat/alure"; 18 license = licenses.mit; 19 platforms = platforms.linux; 20 }; 21}