nixpkgs/pkgs/tools/networking/curlie/default.nix

25 lines
634 B
Nix
Raw Normal View History

2019-08-18 05:52:19 +02:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "curlie";
2020-09-22 11:22:41 +02:00
version = "1.5.4";
2019-08-18 05:52:19 +02:00
src= fetchFromGitHub {
owner = "rs";
repo = pname;
rev = "v${version}";
2020-09-22 11:22:41 +02:00
sha256 = "0z92gz39m0gk8j7l2nwa5vrfr3mq160vr1b15sy13jwi1zspc7hx";
2019-08-18 05:52:19 +02:00
};
2020-09-22 11:22:41 +02:00
vendorSha256 = "1qnl15b9cs6xi8z368a9n34v3wr2adwp376cjzhyllni7sf6v1mm";
2019-08-18 05:52:19 +02:00
doCheck = false;
2019-08-18 05:52:19 +02:00
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/";
2019-08-18 05:52:19 +02:00
maintainers = with maintainers; [ ma27 ];
license = licenses.mit;
};
}