xfce.xfce4-notes-plugin: Generate C code with newer Vala (#359006)
[NixPkgs.git] / pkgs / by-name / ju / junest / package.nix
blob4f2d89f9f6a00d2bd45ecf8a35a19be9cf1e2c53
1 { lib, fetchFromGitHub, stdenvNoCC, wget }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "junest";
5   version = "7.4.10";
7   src = fetchFromGitHub {
8     owner = "fsquillace";
9     repo = "junest";
10     rev = "refs/tags/${version}";
11     hash = "sha256-Dq4EqmeFI1TEbnc4kQwgqe71eJJpzWm2ywt1y6fD8z4=";
12   };
14   dontBuild = true;
16   installPhase = ''
17     runHook preInstall
19     mkdir -p $out/bin
20     mkdir -p $out/lib
21     cp -r $src/bin/ $out/
22     cp -r $src/lib/ $out/
23     # cp -r $src/VERSION $out/
24     substituteInPlace $out/bin/junest --replace-fail '$(cat "$JUNEST_BASE"/VERSION)' ${version}
25     substituteInPlace $out/lib/core/common.sh --replace-fail "wget" ${lib.getExe wget}
27     runHook postInstall
28   '';
30   meta = {
31     description = "Arch distro that runs on top of another without root";
32     homepage = "https://github.com/fsquillace/junest";
33     license = lib.licenses.gpl3Only;
34     mainProgram = "junest";
35     maintainers = with lib.maintainers; [ jdev082 ];
36     platforms = lib.platforms.linux;
37   };