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
63 lines
1.0 KiB
Nix
63 lines
1.0 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
autoconf,
|
|
automake,
|
|
libtool,
|
|
zlib,
|
|
cunit,
|
|
libxcrypt,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "dcap";
|
|
version = "2.47.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dCache";
|
|
repo = "dcap";
|
|
rev = version;
|
|
sha256 = "sha256-hn4nkFTIbSUUhvf9UfsEqVhphAdNWmATaCrv8jOuC0Y=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
automake
|
|
libtool
|
|
];
|
|
buildInputs = [
|
|
zlib
|
|
libxcrypt
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
preConfigure = ''
|
|
patchShebangs --build bootstrap.sh
|
|
./bootstrap.sh
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
checkInputs = [ cunit ];
|
|
|
|
outputs = [
|
|
"bin"
|
|
"dev"
|
|
"out"
|
|
"man"
|
|
"doc"
|
|
];
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
description = "dCache access protocol client library";
|
|
homepage = "https://github.com/dCache/dcap";
|
|
changelog = "https://github.com/dCache/dcap/blob/master/ChangeLog";
|
|
license = licenses.lgpl2Only;
|
|
platforms = platforms.all;
|
|
mainProgram = "dccp";
|
|
maintainers = with maintainers; [ ShamrockLee ];
|
|
};
|
|
}
|