mirror of
https://github.com/haskell-nix/hnix-store.git
synced 2024-12-12 17:04:19 +03:00
3b44930603
Release core `0.7` |
||
---|---|---|
.. | ||
src/System/Nix/Store | ||
tests | ||
.envrc | ||
cabal.project | ||
ChangeLog.md | ||
hnix-store-remote.cabal | ||
LICENSE | ||
README.lhs | ||
README.md | ||
shell.nix |
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 False
liftIO $ print res