mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
47 lines
973 B
Nix
47 lines
973 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, autoconf
|
|
, automake
|
|
, libtool
|
|
, zlib
|
|
, cunit
|
|
, libxcrypt
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "dcap";
|
|
version = "2.47.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dCache";
|
|
repo = "dcap";
|
|
rev = version;
|
|
sha256 = "sha256-pNLEN1YLQGMJNuv8n6bec3qONbwNOYbYDDvkwuP5AR4=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoconf automake libtool ];
|
|
buildInputs = [ zlib libxcrypt ];
|
|
|
|
preConfigure = ''
|
|
patchShebangs bootstrap.sh
|
|
./bootstrap.sh
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
nativeCheckInputs = [ cunit ];
|
|
|
|
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
|
|
|
meta = with lib; {
|
|
broken = stdenv.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 ];
|
|
};
|
|
}
|