nixpkgs/pkgs/tools/filesystems/irods/default.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

174 lines
3.8 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
bzip2,
zlib,
autoconf,
automake,
cmake,
help2man,
texinfo,
libtool,
cppzmq,
libarchive,
avro-cpp_llvm,
boost,
zeromq,
openssl,
pam,
libiodbc,
libkrb5,
gcc,
libcxx,
which,
catch2,
nanodbc_llvm,
fmt,
nlohmann_json,
spdlog_llvm,
curl,
bison,
flex,
}:
let
spdlog_rods = spdlog_llvm.overrideAttrs (attrs: {
inherit stdenv;
version = "1.10.0";
src = attrs.src.override {
rev = "v1.10.0";
hash = "sha256-c6s27lQCXKx6S1FhZ/LiKh14GnXMhZtD1doltU4Avws=";
};
postPatch = ''
substituteInPlace cmake/spdlog.pc.in \
--replace-fail '$'{exec_prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@
'';
});
in
let
avro-cpp = avro-cpp_llvm;
nanodbc = nanodbc_llvm;
common = import ./common.nix {
inherit
lib
stdenv
bzip2
zlib
autoconf
automake
cmake
help2man
texinfo
libtool
cppzmq
libarchive
zeromq
openssl
pam
libiodbc
libkrb5
gcc
libcxx
boost
avro-cpp
which
catch2
nanodbc
fmt
nlohmann_json
curl
spdlog_rods
bison
flex
;
};
in
rec {
# irods: libs and server package
irods = stdenv.mkDerivation (
finalAttrs:
common
// {
version = "4.3.3";
pname = "irods";
src = fetchFromGitHub {
owner = "irods";
repo = "irods";
rev = finalAttrs.version;
hash = "sha256-SmN2FzeoA2/gjiDfGs2oifOVj0mK2WdQCgiSdIlENfk=";
fetchSubmodules = true;
};
# fix build with recent llvm versions
env.NIX_CFLAGS_COMPILE = "-Wno-deprecated-register -Wno-deprecated-declarations";
cmakeFlags = common.cmakeFlags or [ ] ++ [
"-DCMAKE_EXE_LINKER_FLAGS=-Wl,-rpath,${placeholder "out"}/lib -D_GLIBCXX_USE_CXX11_ABI=0"
"-DCMAKE_MODULE_LINKER_FLAGS=-Wl,-rpath,${placeholder "out"}/lib"
"-DCMAKE_SHARED_LINKER_FLAGS=-Wl,-rpath,${placeholder "out"}/lib"
];
postPatch =
common.postPatch
+ ''
patchShebangs ./test
substituteInPlace plugins/database/CMakeLists.txt --replace-fail "COMMAND cpp" "COMMAND ${gcc.cc}/bin/cpp"
for file in unit_tests/cmake/test_config/*.cmake
do
substituteInPlace $file --replace-quiet "CATCH2}/include" "CATCH2}/include/catch2"
done
substituteInPlace server/auth/CMakeLists.txt --replace-fail SETUID ""
'';
meta = common.meta // {
longDescription = common.meta.longDescription + "This package provides the servers and libraries.";
mainProgram = "irodsServer";
};
}
);
# icommands (CLI) package, depends on the irods package
irods-icommands = stdenv.mkDerivation (
finalAttrs:
common
// {
version = "4.3.3";
pname = "irods-icommands";
src = fetchFromGitHub {
owner = "irods";
repo = "irods_client_icommands";
rev = finalAttrs.version;
hash = "sha256-cc0V6BztJk3njobWt27VeJNmQUXyH6aBJkvYIDFEzWY=";
};
buildInputs = common.buildInputs ++ [ irods ];
postPatch =
common.postPatch
+ ''
patchShebangs ./bin
'';
cmakeFlags = common.cmakeFlags ++ [
"-DCMAKE_INSTALL_PREFIX=${stdenv.out}"
"-DIRODS_DIR=${irods}/lib/irods/cmake"
"-DCMAKE_EXE_LINKER_FLAGS=-Wl,-rpath,${irods}/lib"
"-DCMAKE_MODULE_LINKER_FLAGS=-Wl,-rpath,${irods}/lib"
"-DCMAKE_SHARED_LINKER_FLAGS=-Wl,-rpath,${irods}/lib"
];
meta = common.meta // {
description = common.meta.description + " CLI clients";
longDescription =
common.meta.longDescription + "This package provides the CLI clients, called 'icommands'.";
};
}
);
}