summary refs log tree commit diff
path: root/pkgs/tools/text/tab/default.nix
diff options
context:
space:
mode:
authorMaciek Starzyk <mstarzyk@gmail.com>2019-09-02 22:31:50 +0200
committerJon <jonringer@users.noreply.github.com>2019-10-20 13:38:13 -0700
commit642bed5ba32d5fbe6907d65651133a5b080499ea (patch)
treeefbc67d17bc40705e14fcab7728bc0f1fb3dd51b /pkgs/tools/text/tab/default.nix
parentf8ef6e5f7d9525be46baf36778072bc538a7098d (diff)
downloadnixpkgs-642bed5ba32d5fbe6907d65651133a5b080499ea.tar
nixpkgs-642bed5ba32d5fbe6907d65651133a5b080499ea.tar.gz
nixpkgs-642bed5ba32d5fbe6907d65651133a5b080499ea.tar.bz2
nixpkgs-642bed5ba32d5fbe6907d65651133a5b080499ea.tar.lz
nixpkgs-642bed5ba32d5fbe6907d65651133a5b080499ea.tar.xz
nixpkgs-642bed5ba32d5fbe6907d65651133a5b080499ea.tar.zst
nixpkgs-642bed5ba32d5fbe6907d65651133a5b080499ea.zip
tab: init at 7.2
Diffstat (limited to 'pkgs/tools/text/tab/default.nix')
-rw-r--r--pkgs/tools/text/tab/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/tools/text/tab/default.nix b/pkgs/tools/text/tab/default.nix
new file mode 100644
index 00000000000..b7855bc7532
--- /dev/null
+++ b/pkgs/tools/text/tab/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchFromBitbucket, python2 }:
+
+stdenv.mkDerivation rec {
+  version = "7.2";
+  pname = "tab";
+
+  src = fetchFromBitbucket {
+    owner = "tkatchev";
+    repo = pname;
+    rev = version;
+    sha256 = "1bm15lw0vp901dj2vsqx6yixmn7ls3brrzh1w6zgd1ksjzlm5aax";
+  };
+
+  nativeBuildInputs = [ python2 ];
+
+  doCheck = true;
+
+  checkTarget = "test";
+
+  installPhase = ''
+    runHook preInstall
+
+    install -Dm555 -t $out/bin tab
+    install -Dm444 -t $out/share/doc/tab docs/*.html
+
+    runHook postInstall
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Programming language/shell calculator";
+    homepage    = https://tkatchev.bitbucket.io/tab/;
+    license     = licenses.boost;
+    maintainers = with maintainers; [ mstarzyk ];
+    platforms   = with platforms; linux;
+  };
+}