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

25 lines
634 B
Nix
Raw Normal View History

2019-08-18 04:52:19 +01:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "curlie";
2019-12-08 03:59:26 +00:00
version = "1.3.1";
2019-08-18 04:52:19 +01:00
src= fetchFromGitHub {
owner = "rs";
repo = pname;
rev = "v${version}";
2019-12-08 03:59:26 +00:00
sha256 = "09v8alrbw6qva3q3bcqxnyjm7svagfxqvhdff7cqf5pbmkxnhln9";
2019-08-18 04:52:19 +01:00
};
vendorSha256 = "1mxgf004czf65a2mv99gfp27g98xhllmfcz4ynfv66nfkbfz6a8n";
2019-08-18 04:52:19 +01:00
doCheck = false;
2019-08-18 04:52:19 +01: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 04:52:19 +01:00
maintainers = with maintainers; [ ma27 ];
license = licenses.mit;
};
}