nix-tour: 0.0.1 initial release for offline use

This commit is contained in:
Joachim Schiele 2016-06-17 12:06:12 +02:00
parent 7ae1e9bb6d
commit fe04ea79dd
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ stdenv, fetchgit, electron } :
stdenv.mkDerivation rec {
name = "nix-tour";
buildInputs = [ electron ];
version = "v0.0.1";
src = fetchgit {
url = "https://github.com/nixcloud/tour_of_nix";
rev = "refs/tags/${version}";
sha256 = "09b1vxli4zv1nhqnj6c0vrrl51gaira94i8l7ww96fixqxjgdwvb";
};
phases = [ "unpackPhase" "installPhase" ];
installPhase = ''
mkdir -p $out/bin
mkdir -p $out/share
cp -R * $out/share
chmod 0755 $out/share/ -R
echo "#!${stdenv.shell}" > $out/bin/nix-tour
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
'';
meta = with stdenv.lib; {
description = "'the tour of nix' from nixcloud.io/tour as offline version";
homepage = "https://nixcloud.io/tour";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ qknight ];
};
}

View file

@ -10018,6 +10018,8 @@ in
nix-binary-cache = callPackage ../servers/http/nix-binary-cache {};
nix-tour = callPackage ../applications/misc/nix-tour {};
nsd = callPackage ../servers/dns/nsd (config.nsd or {});
nsq = callPackage ../servers/nsq { };