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

25 lines
620 B
Nix
Raw Normal View History

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