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

28 lines
651 B
Nix
Raw Normal View History

2016-02-25 19:32:08 +03:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "gti";
2020-02-12 15:36:58 +03:00
version = "1.7.0";
2016-02-25 19:32:08 +03:00
src = fetchFromGitHub {
owner = "rwos";
repo = "gti";
2017-08-12 12:05:14 +03:00
rev = "v${version}";
2020-02-12 15:36:58 +03:00
sha256 = "1jivnjswlhwjfg5v9nwfg3vfssvqbdxxf9znwmfb5dgfblg9wxw9";
2016-02-25 19:32:08 +03: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;
};
}