mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 03:12:51 +00:00
81 lines
1.5 KiB
Nix
81 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, callPackage
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, cppunit
|
|
, curl
|
|
, fuse
|
|
, libkrb5
|
|
, libuuid
|
|
, libxml2
|
|
, openssl
|
|
, pkg-config
|
|
, readline
|
|
, systemd
|
|
, zlib
|
|
, enableTests ? true
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xrootd";
|
|
version = "5.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xrootd";
|
|
repo = "xrootd";
|
|
rev = "v${version}";
|
|
fetchSubmodules = true;
|
|
sha256 = "sha256-rr6cZ6tyrpCQyKcPBWwGsRAsLbjTXAoTtxf+u1UmvZo=";
|
|
};
|
|
|
|
outputs = [ "bin" "out" "dev" "man" ];
|
|
|
|
passthru.tests = lib.optionalAttrs enableTests {
|
|
test-runner = callPackage ./test-runner.nix { };
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
curl
|
|
libkrb5
|
|
libuuid
|
|
libxml2
|
|
openssl
|
|
readline
|
|
zlib
|
|
]
|
|
++ lib.optionals stdenv.isLinux [
|
|
fuse
|
|
systemd
|
|
]
|
|
++ lib.optionals enableTests [
|
|
cppunit
|
|
];
|
|
|
|
preConfigure = ''
|
|
patchShebangs genversion.sh
|
|
|
|
# Manually apply part of
|
|
# https://github.com/xrootd/xrootd/pull/1619
|
|
# Remove after the above PR is merged.
|
|
sed -i 's/set\((\s*CMAKE_INSTALL_[A-Z_]\+DIR\s\+"[^"]\+"\s*)\)/define_default\1/g' cmake/XRootDOSDefs.cmake
|
|
'';
|
|
|
|
cmakeFlags = lib.optionals enableTests [
|
|
"-DENABLE_TESTS=TRUE"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "High performance, scalable fault tolerant data access";
|
|
homepage = "https://xrootd.slac.stanford.edu";
|
|
license = licenses.lgpl3Plus;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ ShamrockLee ];
|
|
};
|
|
}
|