nixpkgs/pkgs/tools/networking/xh/default.nix

51 lines
1.4 KiB
Nix
Raw Normal View History

2021-03-21 04:35:48 +01:00
{ stdenv, lib, openssl, pkg-config, rustPlatform, fetchFromGitHub, Security
2021-05-24 04:22:43 +02:00
, libiconv, installShellFiles }:
rustPlatform.buildRustPackage rec {
pname = "xh";
2021-09-17 20:55:47 +02:00
version = "0.13.0";
src = fetchFromGitHub {
owner = "ducaale";
repo = "xh";
rev = "v${version}";
2021-09-17 20:55:47 +02:00
sha256 = "sha256-fTd4VSUUj9Im+kCEuFgDsA7eofM1xQfrRzigr1vyJ3I=";
};
2021-09-17 20:55:47 +02:00
cargoSha256 = "sha256-yZdGw/6iVg8PaUyjTrxj6h/2yhBtqEqvMhdRHhMwDZc=";
2021-05-24 04:22:43 +02:00
nativeBuildInputs = [ installShellFiles pkg-config ];
2021-03-21 04:35:48 +01:00
buildInputs = if stdenv.isDarwin then [ Security libiconv ] else [ openssl ];
# Get openssl-sys to use pkg-config
OPENSSL_NO_VENDOR = 1;
2021-05-24 04:22:43 +02:00
postInstall = ''
installShellCompletion --cmd xh \
--bash completions/xh.bash \
--fish completions/xh.fish \
--zsh completions/_xh
# https://github.com/ducaale/xh#xh-and-xhs
ln -s $out/bin/xh $out/bin/xhs
'';
2021-03-21 04:35:48 +01:00
# Nix build happens in sandbox without internet connectivity
# disable tests as some of them require internet due to nature of application
doCheck = false;
doInstallCheck = true;
postInstallCheck = ''
$out/bin/xh --help > /dev/null
2021-05-24 04:22:43 +02:00
$out/bin/xhs --help > /dev/null
'';
meta = with lib; {
2021-05-24 04:22:43 +02:00
description = "Friendly and fast tool for sending HTTP requests";
homepage = "https://github.com/ducaale/xh";
2021-02-15 10:45:36 +01:00
changelog = "https://github.com/ducaale/xh/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ payas SuperSandro2000 ];
};
}