about summary refs log tree commit diff
path: root/pkgs/tools/misc/rtz/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/rtz/default.nix')
-rw-r--r--pkgs/tools/misc/rtz/default.nix57
1 files changed, 0 insertions, 57 deletions
diff --git a/pkgs/tools/misc/rtz/default.nix b/pkgs/tools/misc/rtz/default.nix
deleted file mode 100644
index a223e1ebf01f..000000000000
--- a/pkgs/tools/misc/rtz/default.nix
+++ /dev/null
@@ -1,57 +0,0 @@
-{ lib
-, rustPlatform
-, fetchFromGitHub
-, pkg-config
-, bzip2
-, openssl
-, zstd
-, stdenv
-, darwin
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "rtz";
-  version = "0.5.3";
-
-  src = fetchFromGitHub {
-    owner = "twitchax";
-    repo = "rtz";
-    rev = "v${version}";
-    hash = "sha256-cc5yGZ4zHB9V//ywvKv9qgKGDpKotzkJKbfwv1rK2tM=";
-  };
-
-  cargoLock = {
-    lockFile = ./Cargo.lock;
-    outputHashes = {
-      "bincode-2.0.0-rc.3" = "sha256-YCoTnIKqRObeyfTanjptTYeD9U2b2c+d4CJFWIiGckI=";
-    };
-  };
-
-  nativeBuildInputs = [
-    pkg-config
-  ];
-
-  buildInputs = [
-    bzip2
-    openssl
-    zstd
-  ] ++ lib.optionals stdenv.isDarwin [
-    darwin.apple_sdk.frameworks.Security
-  ];
-
-  buildFeatures = [ "web" ];
-
-  env = {
-    # requires nightly features
-    RUSTC_BOOTSTRAP = true;
-  };
-
-  meta = with lib; {
-    description = "Tool to easily work with timezone lookups via a binary, a library, or a server";
-    homepage = "https://github.com/twitchax/rtz";
-    changelog = "https://github.com/twitchax/rtz/releases/tag/${src.rev}";
-    license = licenses.mit;
-    maintainers = with maintainers; [ figsoda ];
-    mainProgram = "rtz";
-  };
-}