mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
59 lines
1.4 KiB
Nix
59 lines
1.4 KiB
Nix
|
{
|
||
|
lib,
|
||
|
stdenv,
|
||
|
fetchFromGitHub,
|
||
|
python3Packages,
|
||
|
nix-eval-jobs,
|
||
|
nix-output-monitor,
|
||
|
nix-update-script,
|
||
|
}:
|
||
|
|
||
|
python3Packages.buildPythonApplication rec {
|
||
|
pname = "nix-fast-build";
|
||
|
version = "1.0.0";
|
||
|
pyproject = true;
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "Mic92";
|
||
|
repo = "nix-fast-build";
|
||
|
rev = "refs/tags/${version}";
|
||
|
hash = "sha256-8zW6eWvE9T03cMpo/hY8RRZIsSCfs1zmsJOkEZzuYwM=";
|
||
|
};
|
||
|
|
||
|
build-system = [ python3Packages.setuptools ];
|
||
|
|
||
|
makeWrapperArgs = [
|
||
|
"--prefix PATH : ${
|
||
|
lib.makeBinPath (
|
||
|
[
|
||
|
nix-eval-jobs
|
||
|
nix-eval-jobs.nix
|
||
|
]
|
||
|
++ lib.optional (lib.meta.availableOn stdenv.buildPlatform nix-output-monitor.compiler) nix-output-monitor
|
||
|
)
|
||
|
}"
|
||
|
];
|
||
|
|
||
|
# Don't run integration tests as they try to run nix
|
||
|
# to build stuff, which we cannot do inside the sandbox.
|
||
|
checkPhase = ''
|
||
|
PYTHONPATH= $out/bin/nix-fast-build --help
|
||
|
'';
|
||
|
|
||
|
passthru = {
|
||
|
updateScript = nix-update-script { };
|
||
|
};
|
||
|
|
||
|
meta = {
|
||
|
description = "Combine the power of nix-eval-jobs with nix-output-monitor to speed-up your evaluation and building process";
|
||
|
homepage = "https://github.com/Mic92/nix-fast-build";
|
||
|
changelog = "https://github.com/Mic92/nix-fast-build/releases/tag/${version}";
|
||
|
license = lib.licenses.mit;
|
||
|
maintainers = with lib.maintainers; [
|
||
|
getchoo
|
||
|
mic92
|
||
|
];
|
||
|
mainProgram = "nix-fast-build";
|
||
|
};
|
||
|
}
|