nixpkgs/pkgs/tools/networking/dcap/default.nix

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

47 lines
973 B
Nix
Raw Normal View History

2022-01-24 23:39:50 +00:00
{ stdenv
, lib
, fetchFromGitHub
, autoconf
, automake
, libtool
, zlib
, cunit
2022-09-30 01:44:10 +01:00
, libxcrypt
2022-01-24 23:39:50 +00:00
}:
stdenv.mkDerivation rec {
pname = "dcap";
2023-02-23 10:19:06 +00:00
version = "2.47.14";
2022-01-24 23:39:50 +00:00
src = fetchFromGitHub {
owner = "dCache";
repo = "dcap";
rev = version;
2023-02-23 10:19:06 +00:00
sha256 = "sha256-hn4nkFTIbSUUhvf9UfsEqVhphAdNWmATaCrv8jOuC0Y=";
2022-01-24 23:39:50 +00:00
};
nativeBuildInputs = [ autoconf automake libtool ];
2022-09-30 01:44:10 +01:00
buildInputs = [ zlib libxcrypt ];
2022-01-24 23:39:50 +00:00
preConfigure = ''
patchShebangs bootstrap.sh
./bootstrap.sh
'';
doCheck = true;
nativeCheckInputs = [ cunit ];
2022-01-24 23:39:50 +00:00
outputs = [ "bin" "dev" "out" "man" "doc" ];
meta = with lib; {
broken = stdenv.isDarwin;
2022-01-24 23:39:50 +00:00
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 ];
};
}