mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
cxxtools: init at 2.2.1
This commit is contained in:
parent
38f306f492
commit
703ca63b01
2 changed files with 23 additions and 0 deletions
21
pkgs/development/libraries/cxxtools/default.nix
Normal file
21
pkgs/development/libraries/cxxtools/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "2.2.1";
|
||||
name = "cxxtools";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.tntnet.org/download/${name}-${version}.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 ];
|
||||
};
|
||||
}
|
|
@ -7083,6 +7083,8 @@ in
|
|||
|
||||
cutee = callPackage ../development/libraries/cutee { };
|
||||
|
||||
cxxtools = callPackage ../development/libraries/cxxtools { };
|
||||
|
||||
cwiid = callPackage ../development/libraries/cwiid { };
|
||||
|
||||
cyrus_sasl = callPackage ../development/libraries/cyrus-sasl {
|
||||
|
|
Loading…
Reference in a new issue