treewide: Rename libyamlcpp* to yaml-cpp*

This commit is contained in:
OPNA2608 2023-01-29 15:44:19 +01:00
parent 4cb5096914
commit c9b4c7dccd
36 changed files with 69 additions and 69 deletions

View File

@ -6,7 +6,7 @@
, meson
, ninja
, libmpdclient
, libyamlcpp
, yaml-cpp
}:
stdenv.mkDerivation rec {
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
dontUseCmakeConfigure = true;
nativeBuildInputs = [ cmake pkg-config meson ninja ];
buildInputs = [ libmpdclient libyamlcpp ];
buildInputs = [ libmpdclient yaml-cpp ];
mesonFlags = [ "-Dunsupported_use_system_yamlcpp=true" ];

View File

@ -25,7 +25,7 @@
, makeWrapper
, pandoc
, llvmPackages
, libyamlcpp
, yaml-cpp
, soci
, postgresql
, nodejs
@ -95,7 +95,7 @@ in
openssl
R
libuuid
libyamlcpp
yaml-cpp
soci
postgresql
] ++ (if server then [

View File

@ -8,7 +8,7 @@
, unzip
, wrapQtAppsHook
, qtwebengine
, libyamlcpp
, yaml-cpp
, libirc
}:
@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
which
cmake
];
buildInputs = [ ncurses libyamlcpp qtwebengine libirc ];
buildInputs = [ ncurses yaml-cpp qtwebengine libirc ];
patches = [ ./00-remove-third-party.patch ./01-extensions.patch ];
postPatch = ''

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, libroxml, proj_7, libyamlcpp, boost } :
{ lib, stdenv, fetchFromGitHub, libroxml, proj_7, yaml-cpp_0_3, boost } :
stdenv.mkDerivation rec {
pname = "osm2xmap";
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
NIX_CFLAGS_COMPILE = "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H";
buildInputs = [ libroxml proj_7 libyamlcpp boost ];
buildInputs = [ libroxml proj_7 yaml-cpp_0_3 boost ];
meta = with lib; {
homepage = "https://github.com/sembruk/osm2xmap";

View File

@ -21,7 +21,7 @@
, libnatpmp
, libpulseaudio
, libupnp
, libyamlcpp
, yaml-cpp
, msgpack
, opendht-jami
, openssl
@ -62,7 +62,7 @@ stdenv.mkDerivation {
libnatpmp
libpulseaudio
libupnp
libyamlcpp
yaml-cpp
msgpack
opendht-jami
openssl

View File

@ -4,7 +4,7 @@
, substituteAll
, cmake
, openjpeg
, libyamlcpp
, yaml-cpp
, batchVersion ? false
, withJpegLs ? true
, withOpenJpeg ? true
@ -40,12 +40,12 @@ stdenv.mkDerivation rec {
];
nativeBuildInputs = [ cmake ];
buildInputs = lib.optionals batchVersion [ libyamlcpp ]
buildInputs = lib.optionals batchVersion [ yaml-cpp ]
++ lib.optionals withOpenJpeg [ openjpeg openjpeg.dev ];
cmakeFlags = lib.optionals batchVersion [
"-DBATCH_VERSION=ON"
"-DYAML-CPP_DIR=${libyamlcpp}/lib/cmake/yaml-cpp"
"-DYAML-CPP_DIR=${yaml-cpp}/lib/cmake/yaml-cpp"
] ++ lib.optionals withJpegLs [
"-DUSE_JPEGLS=ON"
] ++ lib.optionals withOpenJpeg [

View File

@ -1,4 +1,4 @@
{ clangStdenv, fetchFromGitHub, fetchpatch, catch2, rang, fmt, libyamlcpp, cmake
{ clangStdenv, fetchFromGitHub, fetchpatch, catch2, rang, fmt, yaml-cpp, cmake
, eigen, lua, luaPackages, liblapack, blas, lib, boost, gsl }:
clangStdenv.mkDerivation rec {
@ -20,7 +20,7 @@ clangStdenv.mkDerivation rec {
})
];
nativeBuildInputs = [ cmake lua luaPackages.luafilesystem ];
buildInputs = [ fmt rang libyamlcpp eigen catch2 boost gsl liblapack blas ];
buildInputs = [ fmt rang yaml-cpp eigen catch2 boost gsl liblapack blas ];
meta = with lib; {
description =

View File

@ -5,7 +5,7 @@
, libconfig
, boost
, libyaml
, libyamlcpp
, yaml-cpp
, ncurses
, gpm
, enableAccelergy ? true
@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
libconfig
boost
libyaml
libyamlcpp
yaml-cpp
ncurses
accelergy
] ++ lib.optionals stdenv.isLinux [ gpm ];

View File

@ -8,7 +8,7 @@
, gsl
, lhapdf
, libarchive
, libyamlcpp
, yaml-cpp
, python3
, sqlite
, swig
@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
gsl
lhapdf
libarchive
libyamlcpp
yaml-cpp
python3
python3.pkgs.numpy
sqlite

View File

@ -13,7 +13,7 @@
, lhapdf
, libtirpc
, libyaml
, libyamlcpp
, yaml-cpp
, pkg-config
, qcdnum
, root
@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake gfortran pkg-config ];
buildInputs =
[ apfel blas ceres-solver lhapdf lapack libyaml root qcdnum gsl libyamlcpp zlib ]
[ apfel blas ceres-solver lhapdf lapack libyaml root qcdnum gsl yaml-cpp zlib ]
++ lib.optionals ("5" == lib.versions.major root.version) [ apfelgrid applgrid ]
++ lib.optionals (stdenv.system == "x86_64-darwin") [ memorymappingHook memstreamHook ]
++ lib.optional (stdenv.hostPlatform.libc == "glibc") libtirpc

View File

@ -13,7 +13,7 @@
, fmt
, microsoft_gsl
, range-v3
, libyamlcpp
, yaml-cpp
, ncurses
, file
, darwin
@ -64,7 +64,7 @@ mkDerivation rec {
fmt
microsoft_gsl
range-v3
libyamlcpp
yaml-cpp
] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.libs.utmp ];
preConfigure = ''

View File

@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub, cmake, boost, glog, leveldb, marisa, opencc,
libyamlcpp, gtest, capnproto, pkg-config, plugins ? [ ] }:
yaml-cpp, gtest, capnproto, pkg-config, plugins ? [ ] }:
let
copySinglePlugin = plug: "cp -r ${plug} plugins/${plug.name}";
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ boost glog leveldb marisa opencc libyamlcpp gtest capnproto ]
buildInputs = [ boost glog leveldb marisa opencc yaml-cpp gtest capnproto ]
++ plugins; # for propagated build inputs
preConfigure = copyPlugins;

View File

@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
cmakeFlags = [
"-DUSE_EXTERNAL_LCMS=ON"
"-DUSE_EXTERNAL_TINYXML=ON"
# External libyamlcpp 0.6.* not compatible: https://github.com/imageworks/OpenColorIO/issues/517
# External yaml-cpp 0.6.* not compatible: https://github.com/imageworks/OpenColorIO/issues/517
"-DUSE_EXTERNAL_YAML=OFF"
] ++ lib.optional stdenv.isDarwin "-DOCIO_USE_BOOST_PTR=ON"
++ lib.optional (!stdenv.hostPlatform.isx86) "-DOCIO_USE_SSE=OFF"

View File

@ -4,7 +4,7 @@
, fetchpatch
, cmake
, expat
, libyamlcpp
, yaml-cpp
, ilmbase
, pystring
, imath
@ -61,7 +61,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];
buildInputs = [
expat
libyamlcpp
yaml-cpp
ilmbase
pystring
imath

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, substituteAll, antlr4_9, libargs, catch2, cmake, libyamlcpp }:
{ lib, stdenv, fetchFromGitHub, substituteAll, antlr4_9, libargs, catch2, cmake, yaml-cpp }:
let
antlr4 = antlr4_9;
@ -19,13 +19,13 @@ stdenv.mkDerivation rec {
(substituteAll {
src = ./fix-lib-paths.patch;
antlr4RuntimeCpp = antlr4.runtime.cpp.dev;
inherit libargs catch2 libyamlcpp;
inherit libargs catch2 yaml-cpp;
})
];
nativeBuildInputs = [ cmake ];
buildInputs = [ antlr4.runtime.cpp libyamlcpp ];
buildInputs = [ antlr4.runtime.cpp yaml-cpp ];
meta = with lib; {
description = "Code formatter for Lua";

View File

@ -12,7 +12,7 @@ index 4a21b94..0ac7911 100644
- ${PROJECT_SOURCE_DIR}/third_party/antlr4/runtime/Cpp/runtime/src
+ @libargs@/include
+ @catch2@/include
+ @libyamlcpp@/include
+ @yaml-cpp@/include
+ @antlr4RuntimeCpp@/include/antlr4-runtime
${PROJECT_SOURCE_DIR}/src/
)

View File

@ -7,7 +7,7 @@
, libGL
, zlib
, openssl
, libyamlcpp
, yaml-cpp
, boost
, SDL
, SDL_image
@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ SDL SDL_gfx SDL_image SDL_mixer boost libyamlcpp libGLU libGL openssl zlib ];
buildInputs = [ SDL SDL_gfx SDL_image SDL_mixer boost yaml-cpp libGLU libGL openssl zlib ];
meta = with lib; {
description = "Open source clone of UFO: Enemy Unknown";

View File

@ -1,6 +1,6 @@
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, kernel, installShellFiles, pkg-config
, luajit, ncurses, perl, jsoncpp, libb64, openssl, curl, jq, gcc, elfutils, tbb, protobuf, grpc
, libyamlcpp, nlohmann_json, re2
, yaml-cpp, nlohmann_json, re2
}:
with lib;
@ -51,7 +51,7 @@ stdenv.mkDerivation rec {
re2
protobuf
grpc
libyamlcpp
yaml-cpp
jsoncpp
nlohmann_json
] ++ optionals (kernel != null) kernel.moduleBuildDependencies;

View File

@ -1,5 +1,5 @@
{ lib, stdenv, fetchurl, pkg-config, nixosTests
, boost, libyamlcpp, libsodium, sqlite, protobuf, openssl, systemd
, boost, yaml-cpp, libsodium, sqlite, protobuf, openssl, systemd
, mariadb-connector-c, postgresql, lua, openldap, geoip, curl, unixODBC, lmdb, tinycdb
}:
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config ];
buildInputs = [
boost mariadb-connector-c postgresql lua openldap sqlite protobuf geoip
libyamlcpp libsodium curl unixODBC openssl systemd lmdb tinycdb
yaml-cpp libsodium curl unixODBC openssl systemd lmdb tinycdb
];
# Configure phase requires 64-bit time_t even on 32-bit platforms.

View File

@ -23,7 +23,7 @@
, libxcb
, libxkbcommon
, libxmlxx
, libyamlcpp
, yaml-cpp
, lttng-ust
, mesa
, nettle
@ -158,7 +158,7 @@ stdenv.mkDerivation rec {
libxcb
libxkbcommon
libxmlxx
libyamlcpp
yaml-cpp
lttng-ust
mesa
nettle

View File

@ -7,7 +7,7 @@
, pcre-cpp
, snappy
, zlib
, libyamlcpp
, yaml-cpp
, sasl
, openssl
, libpcap
@ -91,7 +91,7 @@ in stdenv.mkDerivation rec {
curl
gperftools
libpcap
libyamlcpp
yaml-cpp
openssl
pcre-cpp
variants.python

View File

@ -19,7 +19,7 @@
protobuf,
cryptopp,
libxfs,
libyamlcpp,
yaml-cpp,
libsystemtap,
lksctp-tools,
lz4,
@ -64,7 +64,7 @@ gcc8Stdenv.mkDerivation {
protobuf
cryptopp
libxfs
libyamlcpp
yaml-cpp
libsystemtap
lksctp-tools
lz4

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitLab, pkg-config, cmake, libyamlcpp,
{ lib, stdenv, fetchFromGitLab, pkg-config, cmake, yaml-cpp,
libevdev, udev, boost }:
stdenv.mkDerivation rec {
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ libevdev udev libyamlcpp boost ];
buildInputs = [ libevdev udev yaml-cpp boost ];
meta = {
description = "A minimal composable infrastructure on top of libudev and libevdev";

View File

@ -1,4 +1,4 @@
{ stdenv, lib, fetchFromGitLab, pkg-config, libyamlcpp, libevdev }:
{ stdenv, lib, fetchFromGitLab, pkg-config, yaml-cpp, libevdev }:
stdenv.mkDerivation rec {
pname = "dual-function-keys";
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libevdev libyamlcpp ];
buildInputs = [ libevdev yaml-cpp ];
prePatch = ''
substituteInPlace config.mk --replace \

View File

@ -1,5 +1,5 @@
{ lib, fetchurl, boost, cmake, extra-cmake-modules, kparts, kpmcore, kirigami2
, kservice, libatasmart, libxcb, libyamlcpp, libpwquality, parted, polkit-qt, python
, kservice, libatasmart, libxcb, yaml-cpp, libpwquality, parted, polkit-qt, python
, qtbase, qtquickcontrols, qtsvg, qttools, qtwebengine, util-linux, tzdata
, ckbcomp, xkeyboard_config, mkDerivation
, nixos-extensions ? false
@ -43,7 +43,7 @@ mkDerivation rec {
nativeBuildInputs = [ cmake extra-cmake-modules ];
buildInputs = [
boost kparts.dev kpmcore.out kservice.dev kirigami2
libatasmart libxcb libyamlcpp libpwquality parted polkit-qt python
libatasmart libxcb yaml-cpp libpwquality parted polkit-qt python
qtbase qtquickcontrols qtsvg qttools qtwebengine.dev util-linux
];

View File

@ -5,7 +5,7 @@
, meson
, ninja
, pkg-config
, libyamlcpp
, yaml-cpp
, nvramtool
, qtbase
, qtsvg
@ -24,7 +24,7 @@ stdenv.mkDerivation {
};
nativeBuildInputs = [ inkscape meson ninja pkg-config wrapQtAppsHook ];
buildInputs = [ libyamlcpp qtbase qtsvg ];
buildInputs = [ yaml-cpp qtbase qtsvg ];
postPatch = ''
substituteInPlace src/application/*.cpp \

View File

@ -10,7 +10,7 @@
, fmt
, gsl-lite
, howard-hinnant-date
, libyamlcpp
, yaml-cpp
, ninja
, nlohmann_json
, openssl
@ -75,7 +75,7 @@ stdenv.mkDerivation rec {
fmt
gsl-lite
howard-hinnant-date
libyamlcpp
yaml-cpp
nlohmann_json
openssl
re2

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, libyamlcpp, systemd
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, yaml-cpp, systemd
, python3Packages, asciidoc, libxslt, docbook_xml_dtd_45, docbook_xsl
, libxml2, docbook5
}:
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
systemd
];
buildInputs = [ libyamlcpp ];
buildInputs = [ yaml-cpp ];
doCheck = true;

View File

@ -8,7 +8,7 @@
, ghc_filesystem
, libarchive
, libsolv
, libyamlcpp
, yaml-cpp
, nlohmann_json
, python3
, reproc
@ -60,7 +60,7 @@ stdenv.mkDerivation rec {
nlohmann_json
curl
libarchive
libyamlcpp
yaml-cpp
libsolv'
reproc
spdlog'

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, boost, cmake, cpp-hocon, curl, leatherman, libwhereami, libyamlcpp, openssl, ruby, util-linux }:
{ lib, stdenv, fetchFromGitHub, boost, cmake, cpp-hocon, curl, leatherman, libwhereami, yaml-cpp, openssl, ruby, util-linux }:
stdenv.mkDerivation rec {
pname = "facter";
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
NIX_CFLAGS_COMPILE = "-Wno-error";
nativeBuildInputs = [ cmake ];
buildInputs = [ boost cpp-hocon curl leatherman libwhereami libyamlcpp openssl ruby util-linux ];
buildInputs = [ boost cpp-hocon curl leatherman libwhereami yaml-cpp openssl ruby util-linux ];
meta = with lib; {
homepage = "https://github.com/puppetlabs/facter";

View File

@ -2,7 +2,7 @@
, stdenv
, fetchFromGitHub
, cmake
, libyamlcpp
, yaml-cpp
, pkg-config
, procps
, coreutils
@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ libyamlcpp ] ++ lib.optional smartSupport libatasmart;
buildInputs = [ yaml-cpp ] ++ lib.optional smartSupport libatasmart;
meta = {
description = "A simple, lightweight fan control program";

View File

@ -4,7 +4,7 @@
, pkg-config
, wayland
, libinput
, libyamlcpp
, yaml-cpp
}:
stdenv.mkDerivation rec {
@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
buildInputs = [
wayland
libyamlcpp
yaml-cpp
libinput
];

View File

@ -825,6 +825,8 @@ mapAliases ({
libva-full = throw "'libva-full' has been renamed to/replaced by 'libva'"; # Converted to throw 2022-02-22
libva1-full = throw "'libva1-full' has been renamed to/replaced by 'libva1'"; # Converted to throw 2022-02-22
libwnck3 = libwnck;
libyamlcpp = yaml-cpp; # Added 2023-01-29
libyamlcpp_0_3 = yaml-cpp_0_3; # Added 2023-01-29
lightdm_gtk_greeter = lightdm-gtk-greeter; # Added 2022-08-01
lighttable = throw "'lighttable' crashes (SIGSEGV) on startup, has not been updated in years and depends on deprecated GTK2"; # Added 2022-06-15
lilyterm = throw "lilyterm has been removed from nixpkgs, because it was relying on a vte version that depended on python2"; # Added 2022-01-14

View File

@ -21851,9 +21851,9 @@ with pkgs;
libyaml = callPackage ../development/libraries/libyaml { };
libyamlcpp = callPackage ../development/libraries/libyaml-cpp { };
yaml-cpp = callPackage ../development/libraries/yaml-cpp { };
libyamlcpp_0_3 = callPackage ../development/libraries/libyaml-cpp/0.3.0.nix { };
yaml-cpp_0_3 = callPackage ../development/libraries/yaml-cpp/0.3.0.nix { };
libyang = callPackage ../development/libraries/libyang { };
@ -31807,9 +31807,7 @@ with pkgs;
organicmaps = libsForQt5.callPackage ../applications/misc/organicmaps { };
osm2xmap = callPackage ../applications/misc/osm2xmap {
libyamlcpp = libyamlcpp_0_3;
};
osm2xmap = callPackage ../applications/misc/osm2xmap { };
osmctools = callPackage ../applications/misc/osmctools { };