chore: use rtk from official package

This commit is contained in:
Pierre Martin
2026-08-06 09:51:29 +02:00
parent 25717759f7
commit 13003046e2
2 changed files with 0 additions and 22 deletions

View File

@@ -14,7 +14,6 @@ let
in in
let let
crab = pkgs.callPackage ./pkgs/crab.nix { }; crab = pkgs.callPackage ./pkgs/crab.nix { };
rtk = pkgs.callPackage ./pkgs/rtk.nix { };
in in
{ {
nixpkgs.overlays = [ pythonOverlay ]; nixpkgs.overlays = [ pythonOverlay ];

View File

@@ -1,21 +0,0 @@
{
rustPlatform,
fetchFromGitHub,
pkg-config,
sqlite,
lib,
}:
rustPlatform.buildRustPackage {
pname = "rtk";
version = "0.22.2";
src = fetchFromGitHub {
owner = "rtk-ai";
repo = "rtk";
rev = "5b597002dcd99029cb9c0da9b6d38b44021bdb3a";
hash = "sha256-a/+5w1cU/sSGsIdu/9QT1lJlURF669FxMcTiR81makE=";
};
cargoHash = "sha256-lgmgorgT/KDSyzEcE33qkPF4f/3LJbAzEH0s9thTohE=";
doCheck = false; # tests require filesystem access (blocked by Nix sandbox)
nativeBuildInputs = [ pkg-config ];
buildInputs = [ sqlite ];
}