Skip to content

Commit

Permalink
clips: init at 6.30
Browse files Browse the repository at this point in the history
CLIPS is a language for building expert systems.
  • Loading branch information
league authored and dezgeg committed Mar 15, 2017
1 parent 545e267 commit cfc7a18
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/development/interpreters/clips/default.nix
@@ -0,0 +1,29 @@
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
version = "6.30";
name = "clips-${version}";
src = fetchurl {
url = "mirror://sourceforge/clipsrules/CLIPS/6.30/clips_core_source_630.tar.Z";
sha256 = "1r0m59l3mk9cwzq3nmyr5qxrlkzp3njls4hfv8ml85dmqh7n3ysy";
};
buildPhase = ''
make -C core -f ../makefiles/makefile.gcc
'';
installPhase = ''
install -D -t $out/bin core/clips
'';
meta = with stdenv.lib; {
description = "A Tool for Building Expert Systems";
homepage = "http://www.clipsrules.net/";
longDescription = ''
Developed at NASA's Johnson Space Center from 1985 to 1996,
CLIPS is a rule-based programming language useful for creating
expert systems and other programs where a heuristic solution is
easier to implement and maintain than an algorithmic solution.
'';
license = licenses.publicDomain;
maintainers = [maintainers.league];
platforms = platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -5656,6 +5656,8 @@ with pkgs;

ceptre = callPackage ../development/interpreters/ceptre { };

clips = callPackage ../development/interpreters/clips { };

clisp = callPackage ../development/interpreters/clisp { };
clisp-tip = callPackage ../development/interpreters/clisp/hg.nix { };

Expand Down

0 comments on commit cfc7a18

Please sign in to comment.