1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

curlie: init at 1.2.0 (#66799)

This commit is contained in:
Maximilian Bosch 2019-08-18 05:52:19 +02:00 committed by Wael Nasreddine
parent 04fb8593bd
commit 4d5d448859
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "curlie";
version = "1.2.0";
src= fetchFromGitHub {
owner = "rs";
repo = pname;
rev = "v${version}";
sha256 = "0jgwd1amwjpmfgg08j9m9i15rpxijhmld9najzqb2gf8c1n5d8cf";
};
modSha256 = "18nwq99vv3nbdwfilfn8v64mn58jviwybi93li0lcg7779nxab3d";
meta = with lib; {
description = "Curlie is a frontend to curl that adds the ease of use of httpie, without compromising on features and performance";
homepage = https://curlie.io/;
maintainers = with maintainers; [ ma27 ];
license = licenses.mit;
};
}

View file

@ -2473,6 +2473,8 @@ in
curl_unix_socket = callPackage ../tools/networking/curl-unix-socket rec { };
curlie = callPackage ../tools/networking/curlie { };
cunit = callPackage ../tools/misc/cunit { };
bcunit = callPackage ../tools/misc/bcunit { };