nixpkgs/pkgs/tools/misc/gti/default.nix

28 lines
661 B
Nix
Raw Normal View History

2016-02-25 16:32:08 +00:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "gti-${version}";
2017-08-12 09:05:14 +00:00
version = "1.6.1";
2016-02-25 16:32:08 +00:00
src = fetchFromGitHub {
owner = "rwos";
repo = "gti";
2017-08-12 09:05:14 +00:00
rev = "v${version}";
sha256 = "19q3r4v22z2q1j4njap356f3mcq6kwh6v8nbbq2rw4x3cdxwdv51";
2016-02-25 16:32:08 +00:00
};
installPhase = ''
mkdir -p $out/bin $out/share/man/man6
cp gti $out/bin
cp gti.6 $out/share/man/man6
'';
meta = with stdenv.lib; {
homepage = http://r-wos.org/hacks/gti;
license = licenses.mit;
description = "Humorous typo-based git runner; drives a car over the terminal";
maintainers = with maintainers; [ fadenb ];
platforms = platforms.unix;
};
}