No description
Find a file
Nicolas Mattia f5dce6453d Disable doDoc by default
The documentation building step takes a fair bit of time and most users
won't care about it. By default we turn it off.
2019-12-19 10:59:02 +01:00
.circleci Add script/test 2019-12-02 16:42:05 +01:00
builtins Use builtins.pathExists when applicable 2019-11-21 10:34:35 +01:00
docparse Generate configuration documentation from code 2019-12-02 20:30:50 +01:00
nix Add script/test 2019-12-02 16:42:05 +01:00
script Generate configuration documentation from code 2019-12-02 20:30:50 +01:00
test Add experimental support for git dependencies 2019-12-16 10:33:10 +01:00
.gitignore Add basic documentation parser 2019-12-02 16:44:45 +01:00
build.nix Document git dependency related code 2019-12-17 17:20:47 +01:00
config.nix Disable doDoc by default 2019-12-19 10:59:02 +01:00
default.nix Clean up git dependency code 2019-12-17 17:03:10 +01:00
lib.nix Clean up git dependency code 2019-12-17 17:03:10 +01:00
LICENSE Add MIT license 2019-12-01 14:07:23 +01:00
README.md Disable doDoc by default 2019-12-19 10:59:02 +01:00
README.tpl.md Clean up git dependency code 2019-12-17 17:03:10 +01:00
test.nix Disable doDoc by default 2019-12-19 10:59:02 +01:00

Naersk

CircleCI

Nix support for building cargo crates.

Install

Use niv:

$ niv add nmattia/naersk

And then

let
    pkgs = import <nixpkgs> {};
    sources = import ./nix/sources.nix;
    naersk = pkgs.callPackage sources.naersk {};
in naersk.buildPackage ./path/to/rust

NOTE: ./path/to/rust/ should contain a Cargo.lock.

Configuration

The buildPackage function also accepts an attribute set. The attributes are described below. When the argument passed in not an attribute set, e.g.

naersk.buildPackage theArg

it is converted to an attribute set equivalent to { root = theArg; }.

Attribute Description
name The name of the derivation.
version The version of the derivation.
src Used by naersk as source input to the derivation. When root is not set, src is also used to discover the Cargo.toml and Cargo.lock.
root Used by naersk to read the Cargo.toml and Cargo.lock files. May be different from src. When src is not set, root is (indirectly) used as src.
cargoBuild The command to use for the build. Default: ''cargo "''${cargo_options[@]}" build "''${cargo_release[@]}" -j $NIX_BUILD_CORES -Z unstable-options --out-dir out''
doCheck When true, checkPhase is run. Default: true
cargoTestCommands The commands to run in the checkPhase. Default: [ ''cargo "''${cargo_options[@]}" test "''${cargo_release[@]}" -j $NIX_BUILD_CORES'' ]
buildInputs Extra buildInputs to all derivations. Default: []
cargoOptions Options passed to cargo before the command (cargo OPTIONS ) Default: []
doDoc When true, cargo doc is run and a new output doc is generated. Default: false
release When true, all cargo builds are run with --release. Default: true
override An override for all derivations involved in the build. Default: (x: x)
singleStep When true, no intermediary (dependency-only) build is run. Enabling singleStep greatly reduces the incrementality of the builds. Default: false
targets The targets to build if the Cargo.toml is a virtual manifest.
copyBins When true, the resulting binaries are copied to $out/bin. Default: true
copyDocsToSeparateOutput When true, the documentation is generated in a different output, doc. Default: true
doDocFail When true, the build fails if the documentation step fails; otherwise the failure is ignored. Default: false
removeReferencesToSrcFromDocs When true, references to the nix store are removed from the generated documentation. Default: true
compressTarget When true, the build output of intermediary builds is compressed with Zstandard. This reduces the size of closures. Default: true
copyTarget When true, the target/ directory is copied to $out. Default: false
usePureFromTOML Whether to use the fromTOML built-in or not. When set to false the python package remarshal is used instead (in a derivation) and the JSON output is read with builtins.fromJSON. This is a workaround for old versions of Nix. May be used safely from Nix 2.3 onwards where all bugs in builtins.fromTOML seem to have been fixed. Default: true

Comparison

There are two other notable Rust frameworks in Nix: rustPlatform and carnix.

naersk uses cargo directly, as opposed to carnix which emulates cargo's build logic. Moreover naersk sources build information directly from the project's Cargo.lock which makes any code generation unnecessary.

For the same reason, naersk does not need anything like rustPlatform's cargoSha256. All crates are downloaded using the sha256 checksums provided in the project's Cargo.lock.

Finally naersk supports incremental builds by first performing a dependency-only build, and then a build that depends on the top-level crate's code and configuration.