cocom: init at 1.1.3

This commit is contained in:
Fabian Affolter 2021-06-26 23:53:41 +02:00
parent 4d420f27eb
commit ad8b52bfc2
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "cocom";
version = "1.1.3";
src = fetchFromGitHub {
owner = "LamdaLamdaLamda";
repo = pname;
rev = "v${version}";
sha256 = "0sl4ivn95sr5pgw2z877gmhyfc4mk9xr457i5g2i4wqnf2jmy14j";
};
cargoSha256 = "04kj1yj6hhnis3ss0xs4zq8rl71rzn577g8i0wmapkjqzqwg37yb";
buildInputs = lib.optional stdenv.isDarwin Security;
# Tests require network access
doCheck = false;
meta = with lib; {
description = "NTP client";
homepage = "https://github.com/LamdaLamdaLamda/cocom";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -3869,6 +3869,10 @@ in
cocoapods-beta = lowPrio (callPackage ../development/mobile/cocoapods { beta = true; });
cocom = callPackage ../tools/networking/cocom {
inherit (darwin.apple_sdk.frameworks) Security;
};
codebraid = callPackage ../tools/misc/codebraid { };
compass = callPackage ../development/tools/compass { };