hurl: 1.7.0 -> 1.8.0, add figsoda as a maintainer

This commit is contained in:
figsoda 2022-11-07 09:44:48 -05:00
parent ee716eeb81
commit 3384acc17a

View file

@ -1,23 +1,23 @@
{ lib { lib
, stdenv
, rustPlatform , rustPlatform
, fetchFromGitHub , fetchFromGitHub
, pkg-config , pkg-config
, installShellFiles , installShellFiles
, libxml2 , libxml2
, openssl , openssl
, stdenv
, curl , curl
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "hurl"; pname = "hurl";
version = "1.7.0"; version = "1.8.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Orange-OpenSource"; owner = "Orange-OpenSource";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-bv51OOOQFHkFjtv/VXeemMybohtzrhyGfXQkVPDjcps="; sha256 = "sha256-d2iWLswlKBow1B+cOaSmsHVWXk/ugwf3pn3OiLhCml0=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -35,7 +35,7 @@ rustPlatform.buildRustPackage rec {
# Tests require network access to a test server # Tests require network access to a test server
doCheck = false; doCheck = false;
cargoSha256 = "sha256-BIt8xZveOeDUktLldtymYQqlkgqa7MJjKeSPby70Czg="; cargoSha256 = "sha256-A3vl7QRKuox8aE0FsEOiVH/5sRMnKNcdjT2wWPLhd+4=";
postInstall = '' postInstall = ''
installManPage docs/manual/hurl.1 docs/manual/hurlfmt.1 installManPage docs/manual/hurl.1 docs/manual/hurlfmt.1
@ -45,7 +45,7 @@ rustPlatform.buildRustPackage rec {
description = "Command line tool that performs HTTP requests defined in a simple plain text format."; description = "Command line tool that performs HTTP requests defined in a simple plain text format.";
homepage = "https://hurl.dev/"; homepage = "https://hurl.dev/";
changelog = "https://github.com/Orange-OpenSource/hurl/raw/${version}/CHANGELOG.md"; changelog = "https://github.com/Orange-OpenSource/hurl/raw/${version}/CHANGELOG.md";
maintainers = with maintainers; [ eonpatapon ]; maintainers = with maintainers; [ eonpatapon figsoda ];
license = licenses.asl20; license = licenses.asl20;
}; };
} }