summary refs log tree commit diff
path: root/pkgs/development/libraries/cxxtools/default.nix
blob: 77b27640fd77c95be88e513d2c0ff145e2a6f35e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  version = "2.2.1";
  name = "cxxtools-${version}";

  src = fetchurl {
    url = "http://www.tntnet.org/download/${name}.tar.gz";
    sha256 = "0hp3qkyhidxkdf8qgkwrnqq5bpahink55mf0yz23rjd7rpbbdswc";
  };

  enableParallelBuilding = true;

  meta = {
    homepage = http://www.tntnet.org/cxxtools.html;
    description = "Comprehensive C++ class library for Unix and Linux";
    platforms = stdenv.lib.platforms.linux ;
    license = stdenv.lib.licenses.lgpl21;
    maintainers = [ stdenv.lib.maintainers.juliendehos ];
  };
}