2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchgit, electron, runtimeShell } :
|
2016-06-17 10:06:12 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "nix-tour";
|
2018-05-28 12:59:57 +00:00
|
|
|
version = "0.0.1";
|
2016-06-17 10:06:12 +00:00
|
|
|
|
|
|
|
buildInputs = [ electron ];
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/nixcloud/tour_of_nix";
|
2018-05-28 12:59:57 +00:00
|
|
|
rev = "v${version}";
|
2016-06-17 10:06:12 +00:00
|
|
|
sha256 = "09b1vxli4zv1nhqnj6c0vrrl51gaira94i8l7ww96fixqxjgdwvb";
|
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
mkdir -p $out/share
|
|
|
|
cp -R * $out/share
|
|
|
|
chmod 0755 $out/share/ -R
|
2019-02-26 11:45:54 +00:00
|
|
|
echo "#!${runtimeShell}" > $out/bin/nix-tour
|
2016-06-17 10:06:12 +00:00
|
|
|
echo "cd $out/share/" >> $out/bin/nix-tour
|
|
|
|
echo "${electron}/bin/electron $out/share/electron-main.js" >> $out/bin/nix-tour
|
|
|
|
chmod 0755 $out/bin/nix-tour
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-06-17 10:06:12 +00:00
|
|
|
description = "'the tour of nix' from nixcloud.io/tour as offline version";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://nixcloud.io/tour";
|
2016-06-17 10:06:12 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ qknight ];
|
|
|
|
};
|
|
|
|
|
2018-05-28 12:59:57 +00:00
|
|
|
}
|