mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
Adding ACL2.
ACL2 = A Computational Logic for Applicative Common Lisp. It is a Lisp sublanguage and a correctness prover for it. svn path=/nixpkgs/trunk/; revision=16708
This commit is contained in:
parent
8703ea4070
commit
7ffff9d558
41
pkgs/development/interpreters/acl2/default.nix
Normal file
41
pkgs/development/interpreters/acl2/default.nix
Normal file
@ -0,0 +1,41 @@
|
||||
a :
|
||||
let
|
||||
fetchurl = a.fetchurl;
|
||||
|
||||
version = a.lib.attrByPath ["version"] "v3-5" a;
|
||||
buildInputs = with a; [
|
||||
sbcl
|
||||
];
|
||||
in
|
||||
rec {
|
||||
src = fetchurl {
|
||||
url = "http://www.cs.utexas.edu/users/moore/acl2/${version}/distrib/acl2.tar.gz";
|
||||
sha256 = "0zmh1njpp7n7azcyjlygr0h0k51d18s1jkj0dr1jn2bh7mpysajk";
|
||||
name = "acl2-${version}.tar.gz";
|
||||
};
|
||||
|
||||
inherit buildInputs;
|
||||
configureFlags = [];
|
||||
|
||||
/* doConfigure should be removed if not needed */
|
||||
phaseNames = ["doDeploy" "doBuild"];
|
||||
|
||||
makeFlags = ["LISP='${a.sbcl}/bin/sbcl'"];
|
||||
|
||||
installSuffix = "acl2";
|
||||
doDeploy = (a.simplyShare installSuffix);
|
||||
doBuild = a.fullDepEntry (''
|
||||
cd $out/share/${installSuffix}
|
||||
make LISP=${a.sbcl}/bin/sbcl
|
||||
make LISP=${a.sbcl}/bin/sbcl regression
|
||||
ensureDir "$out/bin"
|
||||
cp saved_acl2 "$out/bin/acl2"
|
||||
'') ["doDeploy" "addInputs" "defEnsureDir"];
|
||||
|
||||
name = "acl2-" + version;
|
||||
meta = {
|
||||
description = "An interpreter and a prover for a Lisp dialect";
|
||||
maintainers = [
|
||||
];
|
||||
};
|
||||
}
|
@ -2074,6 +2074,9 @@ let
|
||||
|
||||
### DEVELOPMENT / INTERPRETERS
|
||||
|
||||
acl2 = builderDefsPackage ../development/interpreters/acl2 {
|
||||
inherit sbcl;
|
||||
};
|
||||
|
||||
clisp = import ../development/interpreters/clisp {
|
||||
inherit fetchurl stdenv libsigsegv gettext
|
||||
|
Loading…
Reference in New Issue
Block a user