mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 03:12:51 +00:00
42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
{ stdenv, lib, openssl, pkg-config, rustPlatform, fetchFromGitHub, Security
|
|
, libiconv }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "xh";
|
|
version = "0.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ducaale";
|
|
repo = "xh";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-eOP9sc1qmQuc3HecNNZDMarVkXmEfGZkan0H9598LC0=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-JXywHuZPQVhuWBVUNi9k8TwgE8KCNDtucjxxDi6unVM=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = if stdenv.isDarwin then [ Security libiconv ] else [ openssl ];
|
|
|
|
# Get openssl-sys to use pkg-config
|
|
OPENSSL_NO_VENDOR = 1;
|
|
|
|
checkFlagsArray = [ "--skip=basic_options" ];
|
|
|
|
# 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
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Yet another HTTPie clone in Rust";
|
|
homepage = "https://github.com/ducaale/xh";
|
|
changelog = "https://github.com/ducaale/xh/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ payas SuperSandro2000 ];
|
|
};
|
|
}
|