Added pthread_stubs - non-discriminating pthread compatibility layer for both multithreaded and singlethreaded environment

svn path=/nixpkgs/trunk/; revision=13692
This commit is contained in:
Michael Raskin 2009-01-03 13:43:38 +00:00
parent f87ad9b663
commit 039eb4f162

View File

@ -0,0 +1,8 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "pthread-stubs-0.1";
src = fetchurl {
url = http://xcb.freedesktop.org/dist/libpthread-stubs-0.1.tar.bz2;
sha256 = "0raxl73kmviqinp00bfa025d0j4vmfjjcvfn754mi60mw48swk80";
};
}