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

figsoda 3384acc1 ee716eeb

+5 -5
+5 -5
pkgs/tools/networking/hurl/default.nix
··· 1 1 { lib 2 - , stdenv 3 2 , rustPlatform 4 3 , fetchFromGitHub 5 4 , pkg-config 6 5 , installShellFiles 7 6 , libxml2 8 7 , openssl 8 + , stdenv 9 9 , curl 10 10 }: 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "hurl"; 14 - version = "1.7.0"; 14 + version = "1.8.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "Orange-OpenSource"; 18 18 repo = pname; 19 19 rev = version; 20 - sha256 = "sha256-bv51OOOQFHkFjtv/VXeemMybohtzrhyGfXQkVPDjcps="; 20 + sha256 = "sha256-d2iWLswlKBow1B+cOaSmsHVWXk/ugwf3pn3OiLhCml0="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ ··· 35 35 # Tests require network access to a test server 36 36 doCheck = false; 37 37 38 - cargoSha256 = "sha256-BIt8xZveOeDUktLldtymYQqlkgqa7MJjKeSPby70Czg="; 38 + cargoSha256 = "sha256-A3vl7QRKuox8aE0FsEOiVH/5sRMnKNcdjT2wWPLhd+4="; 39 39 40 40 postInstall = '' 41 41 installManPage docs/manual/hurl.1 docs/manual/hurlfmt.1 ··· 45 45 description = "Command line tool that performs HTTP requests defined in a simple plain text format."; 46 46 homepage = "https://hurl.dev/"; 47 47 changelog = "https://github.com/Orange-OpenSource/hurl/raw/${version}/CHANGELOG.md"; 48 - maintainers = with maintainers; [ eonpatapon ]; 48 + maintainers = with maintainers; [ eonpatapon figsoda ]; 49 49 license = licenses.asl20; 50 50 }; 51 51 }