Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.0 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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 ];
};
}