dcap: Init at 2.47.12 (#156282)
This commit is contained in:
parent
555014c67d
commit
637a001f69
2 changed files with 46 additions and 0 deletions
44
pkgs/tools/networking/dcap/default.nix
Normal file
44
pkgs/tools/networking/dcap/default.nix
Normal file
|
@ -0,0 +1,44 @@
|
|||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, autoconf
|
||||
, automake
|
||||
, libtool
|
||||
, zlib
|
||||
, cunit
|
||||
}:
|
||||
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 ];
|
||||
|
||||
preConfigure = ''
|
||||
patchShebangs bootstrap.sh
|
||||
./bootstrap.sh
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
|
||||
checkInputs = [ cunit ];
|
||||
|
||||
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
||||
|
||||
meta = with lib; {
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -1663,6 +1663,8 @@ with pkgs;
|
|||
|
||||
cyclonedx-python = callPackage ../tools/misc/cyclonedx-python { };
|
||||
|
||||
dcap = callPackage ../tools/networking/dcap { };
|
||||
|
||||
deltachat-cursed = callPackage ../applications/networking/instant-messengers/deltachat-cursed { };
|
||||
|
||||
deltachat-desktop = callPackage ../applications/networking/instant-messengers/deltachat-desktop {
|
||||
|
|
Loading…
Reference in a new issue