summary refs log tree commit diff
path: root/pkgs/tools/misc/gti
diff options
context:
space:
mode:
authorTristan Helmich <tristan.helmich@gmail.com>2016-02-25 17:32:08 +0100
committerTristan Helmich <tristan.helmich@gmail.com>2016-02-25 18:52:19 +0100
commit3234ca49d1441305777f1b4c77e3e741ef9f59d0 (patch)
treedb0b9a0d1c00ced2eb6c3353ba85aa5cba9af458 /pkgs/tools/misc/gti
parent40c586b7ce2c559374df435f46d673baf711c543 (diff)
downloadnixpkgs-3234ca49d1441305777f1b4c77e3e741ef9f59d0.tar
nixpkgs-3234ca49d1441305777f1b4c77e3e741ef9f59d0.tar.gz
nixpkgs-3234ca49d1441305777f1b4c77e3e741ef9f59d0.tar.bz2
nixpkgs-3234ca49d1441305777f1b4c77e3e741ef9f59d0.tar.lz
nixpkgs-3234ca49d1441305777f1b4c77e3e741ef9f59d0.tar.xz
nixpkgs-3234ca49d1441305777f1b4c77e3e741ef9f59d0.tar.zst
nixpkgs-3234ca49d1441305777f1b4c77e3e741ef9f59d0.zip
gti: init at 2015-05-21 (edaac79)
Diffstat (limited to 'pkgs/tools/misc/gti')
-rw-r--r--pkgs/tools/misc/gti/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/tools/misc/gti/default.nix b/pkgs/tools/misc/gti/default.nix
new file mode 100644
index 00000000000..39e28073abc
--- /dev/null
+++ b/pkgs/tools/misc/gti/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  name = "gti-${version}";
+  version = "2015-05-21";
+
+  src = fetchFromGitHub {
+    owner = "rwos";
+    repo = "gti";
+    rev = "edaac795b0b0ff01f2347789f96c740c764bf376";
+    sha256 = "1wki7d61kcmv9s3xayky9cz84qa773x3y1z88y768hq8ifwadcbn";
+  };
+
+  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;
+  };
+}