hnix-store/hnix-store-remote
2023-11-30 06:59:59 +01:00
..
src remote: handle both error types in logger 2023-11-30 06:59:59 +01:00
tests remote: handle both error types in logger 2023-11-30 06:59:59 +01:00
tests-io prefix BuildMode and BuildResult constructors 2023-11-30 06:59:59 +01:00
CHANGELOG.md remote: CHANGELOG cleanup 2023-11-15 08:49:38 +01:00
hnix-store-remote.cabal remote: add Activity and ActivityResult enums 2023-11-30 06:59:59 +01:00
LICENSE hnix-store-remote prototype 2018-07-16 09:12:23 +02:00
README.lhs remote: build README.md via cabal 2023-11-14 09:45:29 +01:00
README.md add RepairMode to System.Nix.Store.Types 2023-11-22 09:07:14 +01:00

hnix-store-remote

Nix worker protocol implementation for interacting with remote Nix store via nix-daemon.

API

Example

{-# LANGUAGE OverloadedStrings #-}

import Control.Monad (void)
import Control.Monad.IO.Class (liftIO)
import System.Nix.Store.Remote

main :: IO ()
main = do
  void $ runStore $ do
    syncWithGC
    roots <- findRoots
    liftIO $ print roots

    res <- addTextToStore "hnix-store" "test" mempty RepairMode_DontRepair
    liftIO $ print res