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: deal with Realisation.id (required for the server side and qc prop) 2023-12-07 16:35:16 +01:00
tests single BuildResult to rule them all 2023-12-07 16:35:16 +01:00
tests-io single BuildResult to rule them all 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 drop dependent-sum-template source-repository-package, add >= 0.2.0.1 lower bound 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