1 { lib, stdenv, fetchurl, gcc-unwrapped }:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/libthreadar/${pname}-${version}.tar.gz";
9 sha256 = "sha256-wJAkIUGK7Ud6n2p1275vNkSx/W7LlgKWXQaDevetPko=";
12 outputs = [ "out" "dev" ];
14 buildInputs = [ gcc-unwrapped ];
16 CXXFLAGS = [ "-std=c++14" ];
19 "--disable-build-html"
28 homepage = "https://libthreadar.sourceforge.net/";
29 description = "C++ library that provides several classes to manipulate threads";
31 Libthreadar is a C++ library providing a small set of C++ classes to manipulate
32 threads in a very simple and efficient way from your C++ code.
34 maintainers = with maintainers; [ izorkin ];
35 license = licenses.lgpl3;
36 platforms = platforms.unix;