Merge pull request #244963 from figsoda/rtz

This commit is contained in:
figsoda
2023-07-24 20:31:05 -04:00
committed by GitHub
3 changed files with 3137 additions and 0 deletions
+3092
View File
File diff suppressed because it is too large Load Diff
+43
View File
@@ -0,0 +1,43 @@
{ lib
, rustPlatform
, fetchFromGitHub
, stdenv
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "rtz";
version = "0.3.2";
src = fetchFromGitHub {
owner = "twitchax";
repo = "rtz";
rev = "v${version}";
hash = "sha256-0RR6Tz9ic8ockfnMW//PQZ1XkZOD46aWgdLY4AXmBT0=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"bincode-2.0.0-rc.3" = "sha256-YCoTnIKqRObeyfTanjptTYeD9U2b2c+d4CJFWIiGckI=";
};
};
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
];
buildFeatures = [ "web" ];
env = {
# requires nightly features
RUSTC_BOOTSTRAP = true;
};
meta = with lib; {
description = "A tool to easily work with time zones via a binary, a library, or a server";
homepage = "https://github.com/twitchax/rtz";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}
+2
View File
@@ -12475,6 +12475,8 @@ with pkgs;
rsstail = callPackage ../applications/networking/feedreaders/rsstail { };
rtz = callPackage ../tools/misc/rtz { };
rubber = callPackage ../tools/typesetting/rubber { };
rubocop = rubyPackages.rubocop;