Merge pull request #308200 from javaes/add_slumber_to_pkgs

slumber: init at 1.0.1
This commit is contained in:
Aleksana 2024-05-03 17:56:28 +08:00 committed by GitHub
commit 1df74cb91c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 31 additions and 0 deletions

View File

@ -9070,6 +9070,12 @@
githubId = 6789916;
name = "Jason Odoom";
};
javaes = {
email = "jan+dev@vanesdonk.de";
github = "javaes";
githubId = 1131529;
name = "Jan van Esdonk";
};
javaguirre = {
email = "contacto@javaguirre.net";
github = "javaguirre";

View File

@ -0,0 +1,25 @@
{ lib, stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "slumber";
version = "1.0.1";
# This release tarball includes source code for the tree-sitter grammars,
# which is not ordinarily part of the repository.
src = fetchFromGitHub {
owner = "LucasPickering";
repo = "slumber";
rev = "v${version}";
hash = "sha256-FXw3hVVY/f49leo9t+z52+Ti9XGk6UJDtd0VpQDQb/o=";
};
cargoHash = "sha256-odLFfq3qjCQUNDauFtlOaKrsYVspAIxAc/pRSEZyIwo=";
meta = with lib; {
description = "Terminal-based HTTP/REST client";
homepage = "https://slumber.lucaspickering.me";
license = licenses.mit;
mainProgram = "slumber";
maintainers = with maintainers; [ javaes ];
broken = stdenv.isDarwin || stdenv.isAarch64;
};
}