nixpkgs/pkgs/tools/networking/curlie/default.nix
2019-12-07 19:59:26 -08:00

23 lines
609 B
Nix

{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "curlie";
version = "1.3.1";
src= fetchFromGitHub {
owner = "rs";
repo = pname;
rev = "v${version}";
sha256 = "09v8alrbw6qva3q3bcqxnyjm7svagfxqvhdff7cqf5pbmkxnhln9";
};
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;
};
}