mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
27 lines
630 B
Nix
27 lines
630 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
...
|
|
}:
|
|
buildGoModule {
|
|
pname = "rHttp";
|
|
version = "unstable-2024-04-28";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "1buran";
|
|
repo = "rHttp";
|
|
rev = "9b7da3a0f7c2e35c9d326e7920ded15f806f8113";
|
|
hash = "sha256-KrMkTp4J5yMiEca4A08u8fmTEFId58KM5bSv+75x49s=";
|
|
};
|
|
|
|
vendorHash = "sha256-NR1q44IUSME+x1EOcnXXRoIXw8Av0uH7iXhD+cdd99I=";
|
|
|
|
meta = with lib; {
|
|
description = "Go REPL for HTTP";
|
|
homepage = "https://github.com/1buran/rHttp";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = with maintainers; [ luftmensch-luftmensch ];
|
|
mainProgram = "rhttp";
|
|
};
|
|
}
|