nixpkgs/pkgs/by-name/ju/junest/package.nix
jdev082 0f4ede258d junest: fix --version flag
Signed-off-by: jdev082 <jdev082@jdev.eu.org>
2024-10-29 16:17:45 -05:00

40 lines
1007 B
Nix

{ lib, fetchFromGitHub, stdenvNoCC, wget }:
stdenvNoCC.mkDerivation rec {
pname = "junest";
version = "7.4.10";
src = fetchFromGitHub {
owner = "fsquillace";
repo = "junest";
rev = "refs/tags/${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;
};
}