gh-classroom: init at 0.1.14
This commit is contained in:
parent
8d74a87fa1
commit
1aa67c9db1
52
pkgs/by-name/gh/gh-classroom/package.nix
Normal file
52
pkgs/by-name/gh/gh-classroom/package.nix
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
buildPackages,
|
||||||
|
fetchFromGitHub,
|
||||||
|
buildGoModule,
|
||||||
|
nix-update-script,
|
||||||
|
installShellFiles,
|
||||||
|
}:
|
||||||
|
buildGoModule (finalAttrs: {
|
||||||
|
pname = "gh-classroom";
|
||||||
|
version = "0.1.14";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "github";
|
||||||
|
repo = "gh-classroom";
|
||||||
|
tag = "v${finalAttrs.version}";
|
||||||
|
hash = "sha256-h9j8B/MGZ4JJOJRj41IIQ9trQJZ4oqvT6ee9lc0P4oo=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorHash = "sha256-UFV3KiRnefrdOwRsHQeo8mx8Z+sI1Rk5yu3jdZxUHxo=";
|
||||||
|
|
||||||
|
ldflags = [
|
||||||
|
"-s"
|
||||||
|
"-w"
|
||||||
|
"-X main.Version=${finalAttrs.version}"
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
|
postInstall = lib.optionalString (stdenv.hostPlatform.emulatorAvailable buildPackages) (
|
||||||
|
let
|
||||||
|
emulator = stdenv.hostPlatform.emulator buildPackages;
|
||||||
|
in
|
||||||
|
''
|
||||||
|
installShellCompletion --cmd gh-classroom \
|
||||||
|
--bash <(${emulator} $out/bin/gh-classroom --bash-completion) \
|
||||||
|
--fish <(${emulator} $out/bin/gh-classroom --fish-completion) \
|
||||||
|
--zsh <(${emulator} $out/bin/gh-classroom --zsh-completion)
|
||||||
|
''
|
||||||
|
);
|
||||||
|
|
||||||
|
passthru.updateScript = nix-update-script { };
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "https://github.com/github/gh-classroom";
|
||||||
|
description = "Extension for the GitHub CLI, that enhances it for educators using GitHub classroom";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ _0x5a4 ];
|
||||||
|
mainProgram = "gh-classroom";
|
||||||
|
};
|
||||||
|
})
|
Loading…
x
Reference in New Issue
Block a user