about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2024-05-13 12:15:19 +0200
committerzimbatm <zimbatm@zimbatm.com>2024-05-13 12:15:19 +0200
commit41efcb97ef14cbade22bb9a74b830b1daaa0bcd0 (patch)
treebe0c966a084af1e1098c2613a4f4fc51246d86d0 /pkgs/development/tools
parent56c7ebdc5e109c691d9685202bdaf0cb504bc2f5 (diff)
treefmt: move to pkgs/by-name
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/treefmt/default.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/pkgs/development/tools/treefmt/default.nix b/pkgs/development/tools/treefmt/default.nix
deleted file mode 100644
index 48fc4b44962e8..0000000000000
--- a/pkgs/development/tools/treefmt/default.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ lib, rustPlatform, fetchFromGitHub }:
-rustPlatform.buildRustPackage rec {
-  pname = "treefmt";
-  version = "0.6.1";
-
-  src = fetchFromGitHub {
-    owner = "numtide";
-    repo = "treefmt";
-    rev = "v${version}";
-    hash = "sha256-icAe54Mv1xpOjUPSk8QDZaMk2ueNvjER6UyJ9uyUL6s=";
-  };
-
-  cargoSha256 = "sha256-bpNIGuh74nwEmHPeXtPmsML9vJOb00xkdjK0Nd7esAc=";
-
-  meta = {
-    description = "one CLI to format the code tree";
-    homepage = "https://github.com/numtide/treefmt";
-    license = lib.licenses.mit;
-    maintainers = [ lib.maintainers.zimbatm ];
-    mainProgram = "treefmt";
-  };
-}