wdt: unstable-2022-03-24 -> unstable-2022-07-08, add updateScript

This commit is contained in:
Nick Cao 2022-07-30 15:51:56 +08:00
parent 3f50785567
commit 1f6f504407
No known key found for this signature in database
GPG key ID: 068A56CEF48FA2C1

View file

@ -1,14 +1,26 @@
{ stdenv, lib, fetchFromGitHub, cmake, folly, boost, gflags, glog, openssl, double-conversion, fmt }:
{ stdenv
, lib
, fetchFromGitHub
, cmake
, folly
, boost
, gflags
, glog
, openssl
, double-conversion
, fmt
, unstableGitUpdater
}:
stdenv.mkDerivation {
pname = "wdt";
version = "unstable-2022-03-24";
version = "unstable-2022-07-08";
src = fetchFromGitHub {
owner = "facebook";
repo = "wdt";
rev = "43319e59d0c77092468367cdadab37d12d7a2383";
sha256 = "sha256-MajYK2eTUbWhEql0iTlgW5yLg9xAGZQk+Dx4fNxFFqw=";
rev = "8f01b7558a80e5f08b06244d2821c3eb5c1d6e9b";
sha256 = "sha256-ozii7EA3j3F/o+lE2mPsUY5lrm3OOtK75gjGkrvoaQ0=";
};
nativeBuildInputs = [ cmake ];
@ -24,6 +36,10 @@ stdenv.mkDerivation {
"-DWDT_USE_SYSTEM_FOLLY=ON"
];
passthru = {
updateScript = unstableGitUpdater { };
};
meta = with lib; {
description = "Warp speed Data Transfer";
homepage = "https://github.com/facebook/wdt";