Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
68 lines
1.6 KiB
Nix
68 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
pkgsStatic,
|
|
fetchFromGitHub,
|
|
python3Packages,
|
|
}:
|
|
|
|
let
|
|
version = "2.14.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JonathonReinhart";
|
|
repo = "scuba";
|
|
tag = "v${version}";
|
|
hash = "sha256-AX70js/bvt88zWJlXpuHIeBsBRfAL4qZjuthPFKSnFI=";
|
|
};
|
|
|
|
# This must be built statically because scuba will execute unknown docker environments
|
|
scubainit = pkgsStatic.rustPlatform.buildRustPackage rec {
|
|
pname = "scubainit";
|
|
inherit src version;
|
|
|
|
sourceRoot = "${src.name}/scubainit";
|
|
|
|
cargoHash = "sha256-YUYo2B5hzzmDeNiWUC+198Qbz+JPgUJfpAqyPWAXTRA=";
|
|
};
|
|
in
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "scuba";
|
|
inherit src version;
|
|
pyproject = true;
|
|
|
|
build-system = with python3Packages; [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
argcomplete
|
|
pyyaml
|
|
];
|
|
|
|
postPatch = ''
|
|
# Version detection fails
|
|
# Patch in the version instead
|
|
substituteInPlace scuba/version.py \
|
|
--replace-fail "__version__ = get_version()" "__version__ = \"${version}\""
|
|
|
|
# Disable calling cargo through the make file
|
|
# scubainit has already been built
|
|
substituteInPlace setup.py \
|
|
--replace-fail "check_call([\"make\"])" "pass"
|
|
'';
|
|
|
|
preBuild = ''
|
|
# Link scubainit into the build tree
|
|
ln -s ${scubainit}/bin/scubainit scuba/scubainit
|
|
'';
|
|
|
|
meta = {
|
|
description = "Simple Container-Utilizing Build Apparatus";
|
|
homepage = "https://github.com/JonathonReinhart/scuba";
|
|
changelog = "https://github.com/JonathonReinhart/scuba/releases/tag/${src.tag}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ tbaldwin ];
|
|
mainProgram = "scuba";
|
|
};
|
|
}
|