From 039eb4f162704558d3de2e5f74eec905777ea7f5 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sat, 3 Jan 2009 13:43:38 +0000 Subject: [PATCH] Added pthread_stubs - non-discriminating pthread compatibility layer for both multithreaded and singlethreaded environment svn path=/nixpkgs/trunk/; revision=13692 --- pkgs/development/libraries/pthread-stubs/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 pkgs/development/libraries/pthread-stubs/default.nix diff --git a/pkgs/development/libraries/pthread-stubs/default.nix b/pkgs/development/libraries/pthread-stubs/default.nix new file mode 100644 index 00000000000..8a007b0f968 --- /dev/null +++ b/pkgs/development/libraries/pthread-stubs/default.nix @@ -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"; + }; +}