mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
stakk: init at 1.17.1 (#520225)
This commit is contained in:
commit
16c55500e6
2 changed files with 50 additions and 0 deletions
|
|
@ -29459,6 +29459,12 @@
|
|||
githubId = 45292658;
|
||||
name = "Julius Schmitt";
|
||||
};
|
||||
voidlily = {
|
||||
github = "voidlily";
|
||||
githubId = 221749;
|
||||
name = "voidlily";
|
||||
keys = [ { fingerprint = "E735 CD3F A78C 0919 4012 ADF3 3FBF B3CC E12E 7D19"; } ];
|
||||
};
|
||||
voidnoi = {
|
||||
email = "voidnoi@proton.me";
|
||||
github = "VoidNoi";
|
||||
|
|
|
|||
44
pkgs/by-name/st/stakk/package.nix
Normal file
44
pkgs/by-name/st/stakk/package.nix
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
fetchFromGitHub,
|
||||
versionCheckHook,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage (finalAttrs: {
|
||||
pname = "stakk";
|
||||
version = "1.17.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "glennib";
|
||||
repo = "stakk";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-5wEZOxXg30F0MqeszDRYrOBnsOzfXxld8iQkZSPqUIY=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-iEGrGSia/Da1bpXVAOI9M7QNNVHUAB/RFRgzl+IrFlU=";
|
||||
|
||||
useNextest = true;
|
||||
|
||||
doInstallCheck = true;
|
||||
nativeInstallCheckInputs = [ versionCheckHook ];
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
__structuredAttrs = true;
|
||||
|
||||
meta = {
|
||||
description = "Bridge Jujutsu (jj) bookmarks to GitHub stacked pull requests";
|
||||
homepage = "https://github.com/glennib/stakk";
|
||||
changelog = "https://github.com/glennib/stakk/blob/${finalAttrs.src.tag}/CHANGELOG.md";
|
||||
license = with lib.licenses; [
|
||||
asl20
|
||||
mit
|
||||
];
|
||||
maintainers = with lib.maintainers; [
|
||||
voidlily
|
||||
Br1ght0ne
|
||||
];
|
||||
mainProgram = "stakk";
|
||||
};
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue