hnix-store/hnix-store-remote
2023-12-07 16:35:16 +01:00
..
app remote: add build-derivation executable 2023-11-30 06:59:59 +01:00
src remote: add StoreReply (HashSet StorePath) & StoreReply (HashSet StorePathName) 2023-12-07 16:35:16 +01:00
tests remote: add opSuccess serializer for StoreReply () 2023-12-07 16:35:16 +01:00
tests-io remote: align GC(Options|Result) record field naming 2023-12-07 16:35:16 +01:00
CHANGELOG.md remote: CHANGELOG cleanup 2023-11-15 08:49:38 +01:00
hnix-store-remote.cabal remote: move enum tests to EnumSpec 2023-12-07 16:35:16 +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