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
44 lines
1000 B
Nix
44 lines
1000 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
stdenvNoCC,
|
|
wget,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "junest";
|
|
version = "7.4.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fsquillace";
|
|
repo = "junest";
|
|
tag = version;
|
|
hash = "sha256-Dq4EqmeFI1TEbnc4kQwgqe71eJJpzWm2ywt1y6fD8z4=";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin
|
|
mkdir -p $out/lib
|
|
cp -r $src/bin/ $out/
|
|
cp -r $src/lib/ $out/
|
|
# cp -r $src/VERSION $out/
|
|
substituteInPlace $out/bin/junest --replace-fail '$(cat "$JUNEST_BASE"/VERSION)' ${version}
|
|
substituteInPlace $out/lib/core/common.sh --replace-fail "wget" ${lib.getExe wget}
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Arch distro that runs on top of another without root";
|
|
homepage = "https://github.com/fsquillace/junest";
|
|
license = lib.licenses.gpl3Only;
|
|
mainProgram = "junest";
|
|
maintainers = with lib.maintainers; [ jdev082 ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|