spring, springlobby update (#15182)

* alure: init at 1.2

* spring: 96.0 -> 101.0

* springlobby: 0.195 -> 0.247
This commit is contained in:
rardiol
2016-05-03 10:19:19 +01:00
committed by Domen Kožar
parent 066b5cb11a
commit 0ba62f7150
4 changed files with 46 additions and 17 deletions
@@ -0,0 +1,20 @@
{ 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.unix;
};
}