67 lines
1.7 KiB
Nix
67 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
openssl,
|
|
pkg-config,
|
|
versionCheckHook,
|
|
nix-update-script,
|
|
installShellFiles,
|
|
buildPackages,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "moon";
|
|
version = "1.38.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "moonrepo";
|
|
repo = "moon";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-jWLyg7K+ucCsrHwFNrpmWAXznSD+3TaYGfbZ2hWlnP0=";
|
|
};
|
|
|
|
cargoHash = "sha256-2E59P0d3SDZUgbN5V52Rr9liONiKcFUFv3dSrtFJ8NE=";
|
|
|
|
env = {
|
|
RUSTFLAGS = "-C strip=symbols";
|
|
OPENSSL_NO_VENDOR = 1;
|
|
};
|
|
|
|
buildInputs = [ openssl ];
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
installShellFiles
|
|
];
|
|
|
|
postInstall = lib.optionalString (stdenv.hostPlatform.emulatorAvailable buildPackages) (
|
|
let
|
|
emulator = stdenv.hostPlatform.emulator buildPackages;
|
|
in
|
|
''
|
|
installShellCompletion --cmd moon \
|
|
--bash <(${emulator} $out/bin/moon completions --shell bash) \
|
|
--fish <(${emulator} $out/bin/moon completions --shell fish) \
|
|
--zsh <(${emulator} $out/bin/moon completions --shell zsh)
|
|
''
|
|
);
|
|
|
|
# Some tests fail, because test using internet connection and install NodeJS by example
|
|
doCheck = false;
|
|
|
|
doInstallCheck = true;
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Task runner and repo management tool for the web ecosystem, written in Rust";
|
|
mainProgram = "moon";
|
|
homepage = "https://github.com/moonrepo/moon";
|
|
changelog = "https://github.com/moonrepo/moon/releases/tag/v${finalAttrs.version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ flemzord ];
|
|
};
|
|
})
|