about summary refs log tree commit diff
path: root/pkgs/tools/misc/aspcud
diff options
context:
space:
mode:
authorThéo Zimmermann <theo.zimmi@gmail.com>2016-11-03 12:14:45 +0100
committerProfpatsch <mail@profpatsch.de>2016-11-03 12:14:45 +0100
commit93fbb947b345da190d52da6f9e48d46194bb8f70 (patch)
treec8f4b1d2e14cefc8edf2a0682954b9618c5b0973 /pkgs/tools/misc/aspcud
parentb6bd555c66cfad421e61ae0cf82a0be50be67cc2 (diff)
aspcud: fix by updating the dependencies (#20086)
Depends on gringo but gringo is now maintained as part of the clingo
suite. This commit removes gringo (standalone) and replace it with
the latest version of clingo. This update follows closely the old
derivation for gringo (see 99e06fe).
Diffstat (limited to 'pkgs/tools/misc/aspcud')
-rw-r--r--pkgs/tools/misc/aspcud/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/aspcud/default.nix b/pkgs/tools/misc/aspcud/default.nix
index 577c0a33b3eee..0bdcfa76fec1f 100644
--- a/pkgs/tools/misc/aspcud/default.nix
+++ b/pkgs/tools/misc/aspcud/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl,
-  boost, clasp, cmake, gringo, re2c
+  boost, clasp, cmake, clingo, re2c
 }:
 
 let
@@ -14,11 +14,11 @@ stdenv.mkDerivation rec {
     sha256 = "029035vcdk527ssf126i8ipi5zs73gqpbrg019pvm9r24rf0m373";
   };
 
-  buildInputs = [ boost clasp cmake gringo re2c ];
+  buildInputs = [ boost clasp cmake clingo re2c ];
 
   buildPhase = ''
     cmake -DCMAKE_BUILD_TYPE=Release \
-      -DGRINGO_LOC=${gringo}/bin/gringo \
+      -DGRINGO_LOC=${clingo}/bin/gringo \
       -DCLASP_LOC=${clasp}/bin/clasp \
       -DENCODING_LOC=$out/share/aspcud/specification.lp \
       .