From 329a1ecb713abb5e6c574413dcc1ed3f302db56c Mon Sep 17 00:00:00 2001 From: Ben Siraphob Date: Thu, 4 Mar 2021 14:59:51 +0700 Subject: [PATCH] clips: fix darwin build --- pkgs/development/interpreters/clips/default.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/clips/default.nix b/pkgs/development/interpreters/clips/default.nix index db6554874af..64fd89008e3 100644 --- a/pkgs/development/interpreters/clips/default.nix +++ b/pkgs/development/interpreters/clips/default.nix @@ -3,18 +3,26 @@ stdenv.mkDerivation rec { version = "6.31"; pname = "clips"; + src = fetchurl { url = "mirror://sourceforge/clipsrules/CLIPS/${version}/clips_core_source_${ builtins.replaceStrings [ "." ] [ "" ] version }.tar.gz"; sha256 = "165k0z7dsv04q432sanmw0jxmxwf56cnhsdfw5ffjqxd3lzkjnv6"; }; + + postPatch = '' + substituteInPlace core/makefile --replace 'gcc' '${stdenv.cc.targetPrefix}cc' + ''; + makeFlags = [ "-C" "core" ]; + installPhase = '' runHook preInstall install -D -t $out/bin core/clips runHook postInstall ''; + meta = with lib; { description = "A Tool for Building Expert Systems"; homepage = "http://www.clipsrules.net/"; @@ -26,6 +34,6 @@ stdenv.mkDerivation rec { ''; license = licenses.publicDomain; maintainers = [ maintainers.league ]; - platforms = platforms.linux; + platforms = platforms.unix; }; }