cxxtools: 2.2.1 -> 3.0

This commit is contained in:
Weijia Wang
2023-12-11 00:36:27 +01:00
parent 64891e361b
commit 659c541a06
2 changed files with 33 additions and 8 deletions
@@ -1,22 +1,47 @@
{ lib, stdenv, fetchurl }:
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, autoreconfHook
, openssl
}:
stdenv.mkDerivation rec {
version = "2.2.1";
pname = "cxxtools";
version = "3.0";
src = fetchurl {
url = "http://www.tntnet.org/download/${pname}-${version}.tar.gz";
sha256 = "0hp3qkyhidxkdf8qgkwrnqq5bpahink55mf0yz23rjd7rpbbdswc";
src = fetchFromGitHub {
owner = "maekitalo";
repo = "cxxtools";
rev = "V${version}";
hash = "sha256-AiMVmtvI20nyv/nuHHxGH4xFnlc9AagVkKlnRlaYCPM=";
};
configureFlags = lib.optional stdenv.isAarch64 "--with-atomictype=pthread";
patches = [
(fetchpatch {
url = "https://github.com/maekitalo/cxxtools/commit/b773c01fc13d2ae67abc0839888e383be23562fd.patch";
hash = "sha256-9yRkD+vMRhc4n/Xh6SKtmllBrmfDx3IBVOtHQV6s7Tw=";
})
(fetchpatch {
url = "https://github.com/maekitalo/cxxtools/commit/6e1439a108ce3892428e95f341f2d23ae32a590e.patch";
hash = "sha256-ZnlbdWBjL9lEtNLEF/ZPa0IzvJ7i4xWI4GbY8KeA6A4=";
})
];
nativeBuildInputs = [
autoreconfHook
];
buildInputs = [
openssl
];
enableParallelBuilding = true;
meta = {
homepage = "http://www.tntnet.org/cxxtools.html";
description = "Comprehensive C++ class library for Unix and Linux";
platforms = lib.platforms.linux ;
platforms = lib.platforms.linux;
license = lib.licenses.lgpl21;
maintainers = [ lib.maintainers.juliendehos ];
};
+1 -1
View File
@@ -20987,7 +20987,7 @@ with pkgs;
cutee = callPackage ../development/libraries/cutee { };
cxxtools = callPackage ../development/libraries/cxxtools { stdenv = gcc10StdenvCompat; };
cxxtools = callPackage ../development/libraries/cxxtools { };
cwiid = callPackage ../development/libraries/cwiid { };