mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-16 06:29:17 +03:00
bounty: init at 0.1.0-unstable-25-01-29
This commit is contained in:
parent
1203351f3d
commit
a1d450e278
1 changed files with 40 additions and 0 deletions
40
pkgs/by-name/bo/bounty/package.nix
Normal file
40
pkgs/by-name/bo/bounty/package.nix
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
fetchFromGitHub,
|
||||||
|
rustPlatform,
|
||||||
|
openssl,
|
||||||
|
libgit2,
|
||||||
|
pkg-config,
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage {
|
||||||
|
pname = "bounty";
|
||||||
|
version = "0.1.0-unstable-25-01-29";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ghbountybot";
|
||||||
|
repo = "cli";
|
||||||
|
rev = "452c7545e611e0648de661f7f9c6444c157a3945";
|
||||||
|
hash = "sha256-0f+ad7mgFskESh9yW+Y53hCFmHmINyy1XgHyB14sK54=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-dlfoA5bWtyHrsviPdFd6O47D/cglvhJzChOboyu1Io0=";
|
||||||
|
useFetchCargoVendor = true;
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
openssl
|
||||||
|
libgit2
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "CLI tool for bountybot.dev";
|
||||||
|
homepage = "https://github.com/ghbountybot/cli";
|
||||||
|
license = [ lib.licenses.mit ];
|
||||||
|
maintainers = with lib.maintainers; [ andrewgazelka ];
|
||||||
|
mainProgram = "bounty";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue