lol

Merge pull request #207059 from SuperSandro2000/httpie

httpie: remove myself from maintainers, little cleanup

authored by

figsoda and committed by
GitHub
d0486aaa 9fc9e839

+4 -5
+4 -5
pkgs/development/python-modules/httpie/default.nix
··· 64 64 65 65 postInstall = '' 66 66 # install completions 67 - installShellCompletion --bash \ 68 - --name http.bash extras/httpie-completion.bash 69 - installShellCompletion --fish \ 70 - --name http.fish extras/httpie-completion.fish 67 + installShellCompletion --cmd http \ 68 + --bash extras/httpie-completion.bash \ 69 + --fish extras/httpie-completion.fish 71 70 72 71 # convert the docs/README.md file 73 72 pandoc --standalone -f markdown -t man docs/README.md -o docs/http.1 ··· 100 99 description = "A command line HTTP client whose goal is to make CLI human-friendly"; 101 100 homepage = "https://httpie.org/"; 102 101 license = licenses.bsd3; 103 - maintainers = with maintainers; [ antono relrod schneefux SuperSandro2000 ]; 102 + maintainers = with maintainers; [ antono relrod schneefux ]; 104 103 }; 105 104 }