1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 07:00:43 +00:00
nixpkgs/pkgs/tools/misc/sl/default.nix

39 lines
938 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, ncurses }:
2013-03-25 13:56:45 +00:00
stdenv.mkDerivation rec {
name = "sl-${version}";
2019-03-19 20:06:08 +00:00
version = "5.04";
2013-03-25 13:56:45 +00:00
src = fetchFromGitHub {
2019-03-19 20:06:08 +00:00
owner = "eyJhb";
repo = "sl";
2019-04-07 08:16:43 +01:00
rev = version;
2019-03-19 20:06:08 +00:00
sha256 = "029lv6vw39c7gj8bkfyqs8q4g32174vbmghhhgfk8wrhnxq60qn7";
2013-03-25 13:56:45 +00:00
};
buildInputs = [ ncurses ];
2019-04-22 14:52:09 +01:00
makeFlags = [ "CC:=$(CC)" ];
2013-03-25 13:56:45 +00:00
installPhase = ''
2019-04-07 08:16:43 +01:00
runHook preInstall
install -Dm755 -t $out/bin sl
install -Dm644 -t $out/share/man/man1 sl.1{,.ja}
runHook postInstall
2013-03-25 13:56:45 +00:00
'';
2019-03-19 20:06:08 +00:00
meta = with stdenv.lib; {
2019-04-07 08:16:43 +01:00
description = "Steam Locomotive runs across your terminal when you type 'sl'";
2013-03-25 13:56:45 +00:00
homepage = http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/index_e.html;
license = rec {
shortName = "Toyoda Masashi's free software license";
fullName = shortName;
2019-03-19 20:06:08 +00:00
url = https://github.com/eyJhb/sl/blob/master/LICENSE;
};
2019-04-07 08:16:43 +01:00
maintainers = with maintainers; [ eyjhb ];
2019-03-19 20:06:08 +00:00
platforms = platforms.unix;
2013-03-25 13:56:45 +00:00
};
}