mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
23 lines
609 B
Nix
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;
|
|
};
|
|
}
|