From 295e26b2081552d3a70e5a249dc61481e7482477 Mon Sep 17 00:00:00 2001 From: Joe Hermaszewski Date: Sat, 25 Jun 2016 21:56:41 +0100 Subject: [PATCH] Export Delta --- Nix/Expr/Types/Annotated.hs | 7 +++++-- Nix/Parser/Library.hs | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Nix/Expr/Types/Annotated.hs b/Nix/Expr/Types/Annotated.hs index 6ebc3ac..468583d 100644 --- a/Nix/Expr/Types/Annotated.hs +++ b/Nix/Expr/Types/Annotated.hs @@ -7,7 +7,10 @@ {-# LANGUAGE OverloadedStrings #-} -- | The source location annotated nix expression type and supporting types. -- -module Nix.Expr.Types.Annotated where +module Nix.Expr.Types.Annotated + ( module Nix.Expr.Types.Annotated + , Delta(..) + )where import Control.Monad hiding (forM_, mapM, sequence) import Data.Data @@ -18,7 +21,7 @@ import Data.Functor.Compose import Data.Semigroup import GHC.Generics import Nix.Expr.Types -import Nix.Parser.Library (Delta) +import Nix.Parser.Library (Delta(..)) import Prelude hiding (concat, concatMap, elem, foldr, mapM, minimum, readFile, sequence) diff --git a/Nix/Parser/Library.hs b/Nix/Parser/Library.hs index 3a0f736..ff97bcf 100644 --- a/Nix/Parser/Library.hs +++ b/Nix/Parser/Library.hs @@ -4,7 +4,7 @@ module Nix.Parser.Library ( module Nix.Parser.Library , module X - , Trifecta.Delta + , Trifecta.Delta(..) ) where import Prelude