We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c68762f commit 33a7585Copy full SHA for 33a7585
hnix-store-core/src/System/Nix/Nar.hs
@@ -23,9 +23,14 @@ module System.Nix.Nar
23
, Nar.NarEffects(..)
24
, Nar.narEffectsIO
25
26
+ , Nar.NarOptions(..)
27
+ , Nar.defaultNarOptions
28
+
29
-- * Internal
30
, Nar.streamNarIO
31
+ , Nar.streamNarIOWithOptions
32
, Nar.runParser
33
+ , Nar.runParserWithOptions
34
, Nar.dumpString
35
, Nar.dumpPath
36
@@ -39,6 +44,7 @@ import qualified Data.ByteString as BS
39
44
import qualified System.IO as IO
40
45
41
46
import qualified System.Nix.Internal.Nar.Effects as Nar
47
+import qualified System.Nix.Internal.Nar.Options as Nar
42
48
import qualified System.Nix.Internal.Nar.Parser as Nar
43
49
import qualified System.Nix.Internal.Nar.Streamer as Nar
50
0 commit comments