Unverified Commit cc75a581 authored by Adam C. Stephens's avatar Adam C. Stephens Committed by GitHub
Browse files

libcutl: 0.10.0 -> 0.11.0, move to by-name, modernize, adopt (#332257)

parents 6a09b4c4 e4bd479a
Loading
Loading
Loading
Loading
+40 −0
Original line number Diff line number Diff line
{
  build2,
  fetchgit,
  gccStdenv,
  lib,
  xercesc,
}:

gccStdenv.mkDerivation (finalAttrs: {
  pname = "libcutl";
  version = "1.11.0";

  src = fetchgit {
    url = "https://git.codesynthesis.com/libcutl/libcutl.git";
    rev = "refs/tags/v${finalAttrs.version}";
    hash = "sha256-LY2ZyxduI6xftVjVqjNkhYPFTL5bvHC289Qcei1Kiw4=";
  };

  nativeBuildInputs = [ build2 ];

  buildInputs = [ xercesc ];

  enableParallelBuilding = true;

  doCheck = true;

  meta = {
    description = "C++ utility library from Code Synthesis";
    longDescription = ''
      libcutl is a C++ utility library.
      It contains a collection of generic and independent components such as
      meta-programming tests, smart pointers, containers, compiler building blocks, etc.
    '';
    homepage = "https://codesynthesis.com/projects/libcutl/";
    changelog = "https://git.codesynthesis.com/cgit/libcutl/libcutl/log/";
    platforms = lib.platforms.all;
    maintainers = [ lib.maintainers.xzfc ];
    license = lib.licenses.mit;
  };
})
+0 −34
Original line number Diff line number Diff line
{ lib, gccStdenv, fetchurl, xercesc }:

let
  stdenv = gccStdenv;
in
stdenv.mkDerivation rec {
  pname = "libcutl";
  version = "1.10.0";

  meta = with lib; {
    description = "C++ utility library from Code Synthesis";
    longDescription = ''
        libcutl is a C++ utility library.
        It contains a collection of generic and independent components such as
        meta-programming tests, smart pointers, containers, compiler building blocks, etc.
    '';
    homepage = "https://codesynthesis.com/projects/libcutl/";
    changelog = "https://git.codesynthesis.com/cgit/libcutl/libcutl/plain/NEWS?h=${version}";
    platforms = platforms.all;
    maintainers = [ ];
    license = licenses.mit;
  };

  majmin = builtins.head ( builtins.match "([[:digit:]]\\.[[:digit:]]+).*" "${version}" );
  src = fetchurl {
    url = "https://codesynthesis.com/download/${pname}/${majmin}/${pname}-${version}.tar.bz2";
    sha256 = "070j2x02m4gm1fn7gnymrkbdxflgzxwl7m96aryv8wp3f3366l8j";
  };

  buildInputs = [ xercesc ];
  enableParallelBuilding = true;

  env.NIX_CFLAGS_COMPILE = toString [ "-std=c++14" ];
}
+0 −2
Original line number Diff line number Diff line
@@ -21221,8 +21221,6 @@ with pkgs;
  libcue = callPackage ../development/libraries/libcue { };
  libcutl = callPackage ../development/libraries/libcutl { };
  libcxxrt = callPackage ../development/libraries/libcxxrt {
    stdenv = if stdenv.hostPlatform.useLLVM or false
             then overrideCC stdenv buildPackages.llvmPackages.tools.clangNoLibcxx