37 lines
773 B
Nix
37 lines
773 B
Nix
|
{
|
||
|
lib,
|
||
|
rustPlatform,
|
||
|
fetchFromGitHub,
|
||
|
pkg-config,
|
||
|
oniguruma,
|
||
|
}:
|
||
|
rustPlatform.buildRustPackage rec {
|
||
|
pname = "atac";
|
||
|
version = "0.18.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "Julien-cpsn";
|
||
|
repo = "ATAC";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-FSZGpV+dREwjst84TT1aBm/H+VqkjI8XDPo3usJ7UeI=";
|
||
|
};
|
||
|
|
||
|
cargoHash = "sha256-sNgtqvFiwHSYMDf0379i8Yl9NrkCRVLo/ogjbHFgKBY=";
|
||
|
|
||
|
nativeBuildInputs = [ pkg-config ];
|
||
|
|
||
|
buildInputs = [ oniguruma ];
|
||
|
|
||
|
env = {
|
||
|
RUSTONIG_SYSTEM_LIBONIG = true;
|
||
|
};
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Simple API client (postman like) in your terminal";
|
||
|
homepage = "https://github.com/Julien-cpsn/ATAC";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ vinnymeller ];
|
||
|
mainProgram = "atac";
|
||
|
};
|
||
|
}
|