nixpkgs/pkgs/by-name/rh/rHttp/package.nix
nicoo 2641d97cbf pkgs/by-name: Convert hashes to SRI format
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
2024-09-15 11:24:31 +02:00

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";
};
}