hnix-store/hnix-store-remote
2023-12-06 16:25:38 +01:00
..
app remote: add build-derivation executable 2023-11-30 06:59:59 +01:00
src tests: custom Arbitrary Trace and Arbitrary ErrorInfo w/o (Just 0) 2023-12-06 16:25:38 +01:00
tests remote: no more hacks for StoreRequest prop 2023-12-06 16:25:38 +01:00
tests-io remote: fix mapStoreConfig import 2023-12-06 16:25:38 +01:00
CHANGELOG.md remote: CHANGELOG cleanup 2023-11-15 08:49:38 +01:00
hnix-store-remote.cabal tests: custom Arbitrary UTCTime instance, drop quickcheck-instances 2023-12-06 16:25:38 +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