Adding the racing videogame VDrift.

I added the asio library as a side effect.

svn path=/nixpkgs/trunk/; revision=26575
This commit is contained in:
Lluís Batlle i Rossell
2011-03-28 16:08:21 +00:00
parent 97182f0bcb
commit 655a9ea9c3
3 changed files with 53 additions and 1 deletions
@@ -0,0 +1,20 @@
{stdenv, fetchurl, boost, openssl}:
stdenv.mkDerivation rec {
name = "asio-1.5.3";
src = fetchurl {
url = "mirror://sourceforge/asio/${name}.tar.bz2";
sha256 = "08fdsv1zhwbfwlx3r3dzl1371lxy5gw92ms0kqcscxqn0ycf3rlj";
};
propagatedBuildInputs = [ boost ];
buildInputs = [ openssl ];
meta = {
homepage = http://asio.sourceforge.net/;
description = "Cross-platform C++ library for network and low-level I/O programming";
license = "boost";
};
}