nixpkgs/pkgs/development/libraries/libthreadar/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
975 B
Nix
Raw Normal View History

2022-03-16 10:12:20 +00:00
{ lib, stdenv, fetchurl, gcc-unwrapped }:
2020-08-27 14:37:26 +00:00
stdenv.mkDerivation rec {
2022-03-16 10:12:20 +00:00
version = "1.4.0";
2020-08-27 14:37:26 +00:00
pname = "libthreadar";
src = fetchurl {
url = "mirror://sourceforge/libthreadar/${pname}-${version}.tar.gz";
2022-03-16 10:12:20 +00:00
sha256 = "sha256-LkcVF4AnuslzpIg/S8sGNJQye6iGcQRGqCqAhg8aN5E=";
2020-08-27 14:37:26 +00:00
};
outputs = [ "out" "dev" ];
2022-03-16 10:12:20 +00:00
buildInputs = [ gcc-unwrapped ];
CXXFLAGS = [ "-std=c++14" ];
2020-08-27 14:37:26 +00:00
configureFlags = [
"--disable-build-html"
];
postInstall = ''
# Disable html help
rm -r "$out"/share
'';
2022-03-16 10:12:20 +00:00
meta = with lib; {
2020-08-27 14:37:26 +00:00
homepage = "http://libthreadar.sourceforge.net/";
description = "A C++ library that provides several classes to manipulate threads";
longDescription = ''
2020-08-27 14:37:26 +00:00
Libthreadar is a C++ library providing a small set of C++ classes to manipulate
threads in a very simple and efficient way from your C++ code.
'';
maintainers = with maintainers; [ izorkin ];
license = licenses.lgpl3;
platforms = platforms.unix;
};
}