From ecf8d2a7499e007122ad5d65c952c23a13bee2a9 Mon Sep 17 00:00:00 2001 From: "Matthias J. Kannwischer" Date: Thu, 21 May 2026 22:07:15 +0800 Subject: [PATCH] slothy: init at 0.2.0 --- pkgs/by-name/sl/slothy/package.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 pkgs/by-name/sl/slothy/package.nix diff --git a/pkgs/by-name/sl/slothy/package.nix b/pkgs/by-name/sl/slothy/package.nix new file mode 100644 index 000000000000..a07c0bb41594 --- /dev/null +++ b/pkgs/by-name/sl/slothy/package.nix @@ -0,0 +1,8 @@ +{ python3Packages }: + +(python3Packages.toPythonApplication python3Packages.slothy).overrideAttrs (old: { + __structuredAttrs = true; + meta = old.meta // { + mainProgram = "slothy-cli"; + }; +})