mirror of
https://github.com/haskell-nix/hnix-store.git
synced 2024-12-13 15:46:26 +03:00
5d03ffc43c
This properly fixes the use of the tasty-discover, the report & info were sent upstream to fix it in docs: https://github.com/haskell-works/tasty-discover/issues/4. Closes: #129 |
||
---|---|---|
.. | ||
src/System/Nix/Store | ||
tests | ||
.envrc | ||
cabal.project | ||
ChangeLog.md | ||
hnix-store-remote.cabal | ||
LICENSE | ||
README.md | ||
shell.nix |
hnix-store-remote
Nix worker protocol implementation for interacting with remote Nix store
via nix-daemon
.
API
Example
import Control.Monad.IO.Class (liftIO)
import Data.HashSet as HS
import System.Nix.Store.Remote
main = do
runStore $ do
syncWithGC
roots <- findRoots
liftIO $ print roots
res <- addTextToStore "hnix-store" "test" (HS.fromList []) False
liftIO $ print res