From 0c331a4a421ba0571991e029451e35bf275a8db5 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 3 Aug 2013 12:10:39 +0200 Subject: [PATCH] haskell-idris: revert update to version 0.9.9 This reverts commit 61c880d5582c9bfd91a4ddb9c27973e31aed8c12. The new Idris version depends on a version of LLVM that we don't have in master yet: it's only in x-updates. --- pkgs/development/compilers/idris/default.nix | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/pkgs/development/compilers/idris/default.nix b/pkgs/development/compilers/idris/default.nix index 804c4838317..225f8afcd82 100644 --- a/pkgs/development/compilers/idris/default.nix +++ b/pkgs/development/compilers/idris/default.nix @@ -1,20 +1,19 @@ -{ cabal, binary, boehmgc, Cabal, filepath, gmp, happy, haskeline -, languageJava, libffi, llvmGeneral, mtl, parsec, split, text -, transformers, vector, vectorBinaryInstances +{ cabal, binary, Cabal, filepath, gmp, happy, haskeline +, languageJava, libffi, mtl, parsec, split, text, transformers }: cabal.mkDerivation (self: { pname = "idris"; - version = "0.9.9"; - sha256 = "0wwssgpiyn7akyfrpi1khvqxx1k8753kk7151zvvymz0zkks643m"; + version = "0.9.8"; + sha256 = "1mxc6mic3d508ni9pqxw8q31f27shyaxs1rchfl2jg58i9w6iy7h"; isLibrary = false; isExecutable = true; buildDepends = [ - binary Cabal filepath haskeline languageJava libffi llvmGeneral mtl - parsec split text transformers vector vectorBinaryInstances + binary Cabal filepath haskeline languageJava libffi mtl parsec + split text transformers ]; buildTools = [ happy ]; - extraLibraries = [ boehmgc gmp ]; + extraLibraries = [ gmp ]; meta = { homepage = "http://www.idris-lang.org/"; description = "Functional Programming Language with Dependent Types";