nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

httpie: remove myself from maintainers, little cleanup

authored by

Sandro and committed by
GitHub
fedacda0 a2bd13fa

+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 ··· 99 100 description = "A command line HTTP client whose goal is to make CLI human-friendly"; 100 101 homepage = "https://httpie.org/"; 101 102 license = licenses.bsd3; 102 - maintainers = with maintainers; [ antono relrod schneefux SuperSandro2000 ]; 103 + maintainers = with maintainers; [ antono relrod schneefux ]; 103 104 }; 104 105 }