Adding gltron.

svn path=/nixpkgs/trunk/; revision=22519
This commit is contained in:
Lluís Batlle i Rossell
2010-07-07 21:44:09 +00:00
parent 26dc245fb2
commit 6b701731ec
3 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{stdenv, fetchurl, SDL, libvorbis, flac, libmikmod}:
stdenv.mkDerivation rec {
name = "SDL_sound-1.0.3";
src = fetchurl {
url = "http://icculus.org/SDL_sound/downloads/${name}.tar.gz";
sha256 = "1pz6g56gcy7pmmz3hhych3iq9jvinml2yjz15fjqjlj8pc5zv69r";
};
buildInputs = [ SDL libvorbis flac libmikmod ];
postInstall = "ln -s $out/include/SDL/SDL_sound.h $out/include/";
meta = {
description = "SDL sound library";
};
}