Files
quantenzitrone 6b61249106 various: switch to finalAttrs pattern
this shouldn't create any rebuilds
2026-01-30 02:36:22 +01:00

63 lines
1.1 KiB
Nix

{
stdenv,
lib,
fetchFromGitHub,
autoconf,
automake,
libtool,
zlib,
cunit,
libxcrypt,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "dcap";
version = "2.47.14";
src = fetchFromGitHub {
owner = "dCache";
repo = "dcap";
rev = finalAttrs.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 = {
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 = lib.licenses.lgpl2Only;
platforms = lib.platforms.all;
mainProgram = "dccp";
maintainers = with lib.maintainers; [ ShamrockLee ];
};
})