Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
70 lines
1.2 KiB
Nix
70 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
libuuid,
|
|
expat,
|
|
curl,
|
|
pcre2,
|
|
sqlite,
|
|
python3,
|
|
boost,
|
|
libxml2,
|
|
libvirt,
|
|
munge,
|
|
voms,
|
|
perl,
|
|
scitokens-cpp,
|
|
openssl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "htcondor";
|
|
version = "24.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "htcondor";
|
|
repo = "htcondor";
|
|
|
|
rev = "v${version}";
|
|
hash = "sha256-F8uI8Stvao7VKULTcOjv/nFUhFHxqd00gRNe6tkKgPE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [
|
|
libuuid
|
|
expat
|
|
openssl
|
|
curl
|
|
pcre2
|
|
sqlite
|
|
python3
|
|
boost
|
|
libxml2
|
|
libvirt
|
|
munge
|
|
voms
|
|
perl
|
|
scitokens-cpp
|
|
];
|
|
|
|
env.CXXFLAGS = "-fpermissive";
|
|
|
|
cmakeFlags = [
|
|
"-DSYSTEM_NAME=NixOS"
|
|
"-DWITH_PYTHON_BINDINGS=false"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://htcondor.org/";
|
|
description = "Software system that creates a High-Throughput Computing (HTC) environment";
|
|
platforms = platforms.linux;
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ evey ];
|
|
# On Aarch64: ld: cannot find -lpthread: No such file or directory
|
|
# On x86_64: ld: cannot find -ldl: No such file or directory
|
|
broken = true;
|
|
};
|
|
}
|