mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
87f0af7b69
ChangeLog: * https://github.com/rs/curlie/releases/tag/v1.6.5 * https://github.com/rs/curlie/releases/tag/v1.6.6 * https://github.com/rs/curlie/releases/tag/v1.6.7
25 lines
620 B
Nix
25 lines
620 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "curlie";
|
|
version = "1.6.7";
|
|
|
|
src= fetchFromGitHub {
|
|
owner = "rs";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-uWLJWhsqJaLji2JSuVX8Vu929AdozhtAPwsqXdpEt84=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-tYZtnD7RUurhl8yccXlTIvOxybBJITM+it1ollYJ1OI=";
|
|
|
|
doCheck = false;
|
|
|
|
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/";
|
|
maintainers = with maintainers; [ ma27 ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|