From fedacda0c63389369e7dce6ed7020994d78705c3 Mon Sep 17 00:00:00 2001 From: Sandro Date: Wed, 21 Dec 2022 00:45:15 +0100 Subject: [PATCH] httpie: remove myself from maintainers, little cleanup --- pkgs/development/python-modules/httpie/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/httpie/default.nix b/pkgs/development/python-modules/httpie/default.nix index 143822de63b9..f52d70f30218 100644 --- a/pkgs/development/python-modules/httpie/default.nix +++ b/pkgs/development/python-modules/httpie/default.nix @@ -64,10 +64,9 @@ buildPythonPackage rec { postInstall = '' # install completions - installShellCompletion --bash \ - --name http.bash extras/httpie-completion.bash - installShellCompletion --fish \ - --name http.fish extras/httpie-completion.fish + installShellCompletion --cmd http \ + --bash extras/httpie-completion.bash \ + --fish extras/httpie-completion.fish # convert the docs/README.md file pandoc --standalone -f markdown -t man docs/README.md -o docs/http.1 @@ -100,6 +99,6 @@ buildPythonPackage rec { description = "A command line HTTP client whose goal is to make CLI human-friendly"; homepage = "https://httpie.org/"; license = licenses.bsd3; - maintainers = with maintainers; [ antono relrod schneefux SuperSandro2000 ]; + maintainers = with maintainers; [ antono relrod schneefux ]; }; }