Giter VIP home page Giter VIP logo

nix-cache-proxy's Introduction

Nix Store Proxy

A proxy that acts as binary cache for Nix.

  • Signs Narinfo in flight with own private key
  • Authenticates with S3 to forward NARs for long-term storage
  • Keeps a local cache on disk for faster responses.

Usage

To add store paths to the cache, you can use nix copy:

nix copy --to 's3://cache?endpoint=127.0.0.1:7070&scheme=http' .#foo

To use this as your binary cache, specify it as a substituter:

nix build --option substituters http://127.0.0.1:7070 .#foo

Public and private keys are inherited from the Nix configuration. So if your system already has a private key specified, you won't need to that again.

Signatures are checked against the the trusted-public-keys of your configuration.

Upload after every build

Set a post-build-hook in your nix configuration to a script like this:

#!/bin/sh
set -euf
export IFS=' '
echo "Uploading to cache: $OUT_PATHS"
exec nix copy --to 's3://cache?endpoint=127.0.0.1:7070&scheme=http' $OUT_PATHS

TODO

  • Write tests
  • Distribute lookups across multiple caches
  • Proper CLI usage
  • Verify existing signatures
  • Disk cache size limits and LRU eviction
  • Metrics for cache usage

nix-cache-proxy's People

Contributors

manveru avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.