nixpkgs/pkgs/applications/science/logic/sad/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, haskell, spass }:
stdenv.mkDerivation rec {
pname = "system-for-automated-deduction";
version = "2.3.25";
src = fetchurl {
url = "http://nevidal.org/download/sad-${version}.tar.gz";
sha256 = "10jd93xgarik7xwys5lq7fx4vqp7c0yg1gfin9cqfch1k1v8ap4b";
};
2019-03-09 00:07:18 +00:00
buildInputs = [ haskell.compiler.ghc844 spass ];
2018-08-09 20:09:12 +00:00
patches = [
2020-05-26 04:49:24 +00:00
./patch.patch
2018-08-09 20:09:12 +00:00
# Since the LTS 12.0 update, <> is an operator in Prelude, colliding with
# the <> operator with a different meaning defined by this package
./monoid.patch
];
postPatch = ''
substituteInPlace Alice/Main.hs --replace init.opt $out/init.opt
'';
installPhase = ''
mkdir -p $out/{bin,provers}
install alice $out/bin
install provers/moses $out/provers
substituteAll provers/provers.dat $out/provers/provers.dat
substituteAll init.opt $out/init.opt
cp -r examples $out
'';
inherit spass;
meta = {
description = "A program for automated proving of mathematical texts";
longDescription = ''
2018-08-09 20:09:12 +00:00
The system for automated deduction is intended for automated processing of formal mathematical texts
written in a special language called ForTheL (FORmal THEory Language) or in a traditional first-order language
'';
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl3Plus;
maintainers = [ lib.maintainers.schmitthenner ];
homepage = "http://nevidal.org/sad.en.html";
2021-01-15 13:21:58 +00:00
platforms = lib.platforms.linux;
broken = true; # ghc-8.4.4 is gone from Nixpkgs
2016-08-02 15:51:05 +00:00
};
}