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:
@@ -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";
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user