aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/text/tab/default.nix
blob: 8a80c7ad10e927c82b7f8721e8de38d121dffbba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ stdenv, fetchFromBitbucket, python3 }:

stdenv.mkDerivation rec {
  version = "7.2";
  pname = "tab";

  src = fetchFromBitbucket {
    owner = "tkatchev";
    repo = pname;
    rev = version;
    sha256 = "1bm15lw0vp901dj2vsqx6yixmn7ls3brrzh1w6zgd1ksjzlm5aax";
  };

  checkInputs = [ python3 ];

  doCheck = !stdenv.isDarwin;

  preCheck = ''
    substituteInPlace Makefile --replace "python2 go2.py" "python go.py"
  '';

  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; unix;
  };
}