about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/nix-tour/default.nix
blob: 1cc7f419aa2e3364307e1744dd4e4f0ca4bb77de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ stdenv, fetchgit, electron, runtimeShell } :

stdenv.mkDerivation rec {
  name = "nix-tour-${version}";
  version = "0.0.1";

  buildInputs = [ electron ];

  src = fetchgit {
    url = "https://github.com/nixcloud/tour_of_nix";
    rev = "v${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 "#!${runtimeShell}" > $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 ];
  };

}