summary refs log tree commit diff
path: root/pkgs/applications/science/logic/tptp/default.nix
blob: 68d1cca7e736e51a8d2059393850abda1ce9ba37 (plain) (blame)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
x@{builderDefsPackage
  , yap, tcsh, perl, patchelf, pkgsi686Linux
  , ...}:
builderDefsPackage
(a :  
let 
  helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ 
    ["pkgsi686Linux"];

  buildInputs = map (n: builtins.getAttr n x)
    (builtins.attrNames (builtins.removeAttrs x helperArgNames));
  sourceInfo = rec {
    baseName="TPTP";
    version="5.4.0";
    name="${baseName}-${version}";
    url="http://www.cs.miami.edu/~tptp/TPTP/Distribution/TPTP-v${version}.tgz";
    hash="0rvrmh3vw4bk7mj29bx1pi76g2bsqyc13gsnpa1cbjs5pzyhm780";
  };
in
rec {
  src = a.fetchurl {
    url = sourceInfo.url;
    sha256 = sourceInfo.hash;
  };

  inherit (sourceInfo) name version;
  inherit buildInputs;

  /* doConfigure should be removed if not needed */
  phaseNames = ["goTarget" "doUnpack" "fixPlace" "setVars" "installScripts" 
    "patchBinaries" "makeLinks"];

  goTarget = a.fullDepEntry ''
    mkdir -p "$out"/share/
    cd "$out"/share/
  '' ["defEnsureDir" "minInit"];

  fixPlace = a.fullDepEntry ''
    cd ..
    mv TPTP-* tptp
    cd tptp
  '' ["minInit" "doUnpack"];

  setVars = a.noDepEntry ''
    export TPTP="$PWD"
  '';

  installScripts = a.fullDepEntry ''
    tcsh "$out/share/tptp/Scripts/tptp2T_install" -default

    sed -e 's@^ */bin/@@' -i TPTP2X/*

    tcsh "$out/share/tptp/TPTP2X/tptp2X_install" -default
  '' ["addInputs"];

  makeLinks = a.fullDepEntry ''
    mkdir -p "$out/bin"
    ln -s "../share/tptp/TPTP2X/tptp2X" "$out/bin"
    ln -s "../share/tptp/Scripts/tptp2T" "$out/bin"
    ln -s "../share/tptp/Scripts/tptp4X" "$out/bin"
  '' ["defEnsureDir" "minInit"];

  patchBinaries = a.fullDepEntry ''
    patchelf --set-interpreter "${pkgsi686Linux.glibc}"/lib/ld-linux.so.* \
      "Scripts/tptp4X"
  '' ["addInputs"];
      
  meta = {
    description = "Thousands of problems for theorem provers and tools";
    maintainers = with a.lib.maintainers;
    [
      raskin
    ];
    # A GiB of data. Installation is unpacking and editing a few files.
    # No sense in letting Hydra build it.
    # Also, it is unclear what is covered by "verbatim" - we will edit configs
    hydraPlatforms = [];
    license = "verbatim-redistribution";
  };
  passthru = {
    updateInfo = {
      downloadPage = "http://tptp.org/";
    };
  };
}) x