2013-03-25 14:56:45 +01:00
|
|
|
{ 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 = ''
|
2014-06-30 14:56:10 +02:00
|
|
|
mkdir -p $out/bin
|
2013-03-25 14:56:45 +01:00
|
|
|
cp sl $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/index_e.html;
|
2014-08-14 21:25:41 +02:00
|
|
|
license = rec {
|
|
|
|
shortName = "Toyoda Masashi's free software license";
|
|
|
|
fullName = shortName;
|
|
|
|
url = https://github.com/mtoyoda/sl/blob/master/LICENSE;
|
|
|
|
};
|
2013-03-25 14:56:45 +01:00
|
|
|
description = "Steam Locomotive runs across your terminal when you type 'sl'";
|
2015-04-04 06:33:47 +02:00
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
2013-03-25 14:56:45 +01:00
|
|
|
};
|
|
|
|
}
|