Skip to content

Commit

Permalink
hurl: init at 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eonpatapon committed Jul 26, 2021
1 parent 91ffffd commit 2849d97
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
40 changes: 40 additions & 0 deletions pkgs/tools/networking/hurl/default.nix
@@ -0,0 +1,40 @@
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, libxml2
, openssl
}:

rustPlatform.buildRustPackage rec {
pname = "hurl";
version = "1.2.0";

src = fetchFromGitHub {
owner = "Orange-OpenSource";
repo = pname;
rev = version;
sha256 = "0hbyqj794pvvfrg6jgz63mih73bnmnvgmwbv705c2238w7wsgk9w";
};

nativeBuildInputs = [
pkg-config
];

buildInputs = [
libxml2
openssl
];

# Tests require network access to a test server
doCheck = false;

cargoSha256 = "09ndgm6kmqwdz7yn2rqxk5xr1qkai87zm1k138cng4wq135c3w6g";

meta = with lib; {
description = "Command line tool that performs HTTP requests defined in a simple plain text format.";
homepage = "https://hurl.dev/";
maintainers = with maintainers; [ eonpatapon ];
license = licenses.asl20;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -5863,6 +5863,8 @@ in

httpx = callPackage ../tools/security/httpx { };

hurl = callPackage ../tools/networking/hurl { };

hub = callPackage ../applications/version-management/git-and-tools/hub { };

hubicfuse = callPackage ../tools/filesystems/hubicfuse { };
Expand Down

0 comments on commit 2849d97

Please sign in to comment.