summary refs log tree commit diff
path: root/pkgs/tools/misc/sl/default.nix
blob: f5bc2edf3caa0a3b06a9e1a9cf383d0955bbfeb9 (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
{ stdenv, fetchurl, ncurses }:

stdenv.mkDerivation {
  name = "sl-3.03";

  src = fetchurl {
    url = "http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/sl/sl.tar";
    sha256 = "1x3517aza0wm9hhb02npl8s7xy947cdidxmans27q0gjmj3bvg5j";
  };

  patchPhase = ''
    sed -i "s/-lcurses -ltermcap/-lncurses/" Makefile
  '';

  buildInputs = [ ncurses ];

  installPhase = ''
    mkdir -p $out/bin
    cp sl $out/bin
  '';

  meta = {
    homepage = http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/index_e.html;
    license = rec {
      shortName = "Toyoda Masashi's free software license";
      fullName = shortName;
      url = https://github.com/mtoyoda/sl/blob/master/LICENSE;
    };
    description = "Steam Locomotive runs across your terminal when you type 'sl'";
    platforms = with stdenv.lib.platforms; unix;
  };
}