Merge pull request #306644 from jdev082/init-junest

junest: init at 7.4.8
This commit is contained in:
kirillrdy
2024-05-28 19:58:56 +10:00
committed by GitHub
2 changed files with 39 additions and 0 deletions
+6
View File
@@ -9397,6 +9397,12 @@
githubId = 2377;
name = "Jonathan del Strother";
};
jdev082 = {
email = "jdev0894@gmail.com";
github = "jdev082";
githubId = 92550746;
name = "jdev082";
};
jdreaver = {
email = "johndreaver@gmail.com";
github = "jdreaver";
+33
View File
@@ -0,0 +1,33 @@
{ lib, fetchFromGitHub, stdenvNoCC, wget }:
stdenvNoCC.mkDerivation rec {
pname = "junest";
version = "7.4.8";
src = fetchFromGitHub {
owner = "fsquillace";
repo = "junest";
rev = "refs/tags/${version}";
hash = "sha256-9yrQ721fHUxXEZ0mh27SB8yoUH67ltOktUq3kr4qrBc=";
};
dontBuild = true;
installPhase = ''
mkdir -p $out/bin
mkdir -p $out/lib
cp -r $src/bin/ $out/
cp -r $src/lib/ $out/
substituteInPlace $out/lib/core/common.sh --replace-fail "wget" ${lib.getExe wget}
'';
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;
};
}