hnix-store-remote: Remote hnix store

[ apache, library, nix ] [ Propose Tags ]

Implementation of the nix store using the daemon protocol.


[Skip to Readme]

Modules

[Last Documentation]

  • System
    • Nix
      • Store
        • System.Nix.Store.Remote
          • System.Nix.Store.Remote.Binary
          • System.Nix.Store.Remote.Builders
          • System.Nix.Store.Remote.Logger
          • System.Nix.Store.Remote.Parsers
          • System.Nix.Store.Remote.Protocol
          • System.Nix.Store.Remote.Types
          • System.Nix.Store.Remote.Util

Flags

Automatic Flags
NameDescriptionDefault
io-testsuite

Enable testsuite, which requires external binaries and Linux namespace support.

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0, 0.3.0.0, 0.4.0.0, 0.4.1.0, 0.4.2.0, 0.4.3.1, 0.5.0.0, 0.6.0.0
Change log ChangeLog.md
Dependencies attoparsec, base (>=4.10 && <5), binary, bytestring, containers, filepath, hnix-store-core, mtl, network, nix-derivation (>=1.1.1 && <2), text, time, unix, unordered-containers, vector [details]
License Apache-2.0
Copyright 2018 Richard Marko
Author Richard Marko
Maintainer srk@48.io
Category Nix
Home page https://github.com/haskell-nix/hnix-store
Uploaded by srk at 2020-11-29T14:30:27Z
Distributions NixOS:0.6.0.0
Reverse Dependencies 1 direct, 10 indirect [details]
Downloads 2867 total (59 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2020-11-29 [all 2 reports]

Readme for hnix-store-remote-0.3.0.0

[back to package description]

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