vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / by-name / ju / junest / package.nix
blob2890f345964b9759d7e68ff7b9d15f307d67e8e3
1 { lib, fetchFromGitHub, stdenvNoCC, wget }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "junest";
5   version = "7.4.9";
7   src = fetchFromGitHub {
8     owner = "fsquillace";
9     repo = "junest";
10     rev = "refs/tags/${version}";
11     hash = "sha256-iPZN4zPHRsOh5GjRUbeEQj7BYO2Ng93mNn8TvxpDN3Q=";
12   };
14   dontBuild = true;
16   installPhase = ''
17     mkdir -p $out/bin
18     mkdir -p $out/lib
19     cp -r $src/bin/ $out/
20     cp -r $src/lib/ $out/
21     substituteInPlace $out/lib/core/common.sh --replace-fail "wget" ${lib.getExe wget}
22   '';
24   meta = {
25     description = "Arch distro that runs on top of another without root";
26     homepage = "https://github.com/fsquillace/junest";
27     license = lib.licenses.gpl3Only;
28     mainProgram = "junest";
29     maintainers = with lib.maintainers; [ jdev082 ];
30     platforms = lib.platforms.linux;
31   };