2019-08-18 04:52:19 +01:00
|
|
|
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "curlie";
|
2020-11-06 12:46:18 +00:00
|
|
|
version = "1.6.0";
|
2019-08-18 04:52:19 +01:00
|
|
|
|
|
|
|
src= fetchFromGitHub {
|
|
|
|
owner = "rs";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-11-06 12:46:18 +00:00
|
|
|
sha256 = "sha256-rrwdqaKrC37BaI9RuTTv6EiOZ3ztgd7nGuplmeW02h8=";
|
2019-08-18 04:52:19 +01:00
|
|
|
};
|
|
|
|
|
2020-11-06 12:46:18 +00:00
|
|
|
vendorSha256 = "sha256-tYZtnD7RUurhl8yccXlTIvOxybBJITM+it1ollYJ1OI=";
|
2019-08-18 04:52:19 +01:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2019-08-18 04:52:19 +01:00
|
|
|
meta = with lib; {
|
2020-10-26 04:08:40 +00:00
|
|
|
description = "Frontend to curl that adds the ease of use of httpie, without compromising on features and performance";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://curlie.io/";
|
2019-08-18 04:52:19 +01:00
|
|
|
maintainers = with maintainers; [ ma27 ];
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
2020-07-31 04:58:04 +01:00
|
|
|
}
|