crane/flake.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

128 lines
3.3 KiB
Nix
Raw Normal View History

2021-12-26 22:47:16 +03:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
flake-utils.url = "github:numtide/flake-utils";
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs = {
flake-utils.follows = "flake-utils";
nixpkgs.follows = "nixpkgs";
};
};
2021-12-26 22:47:16 +03:00
};
2022-10-24 02:20:22 +03:00
outputs = { nixpkgs, flake-utils, rust-overlay, ... }:
2021-12-26 22:47:16 +03:00
let
2022-01-16 07:21:02 +03:00
mkLib = pkgs: import ./lib {
inherit (pkgs) lib newScope;
};
2021-12-26 22:47:16 +03:00
in
{
2022-01-16 07:21:02 +03:00
inherit mkLib;
2022-10-24 02:20:22 +03:00
overlays.default = _final: _prev: { };
2022-01-17 01:25:41 +03:00
templates = rec {
alt-registry = {
description = "Build a cargo project with alternative crate registries";
path = ./examples/alt-registry;
};
cross-musl = {
description = "Building static binaries with musl";
2022-05-12 00:37:47 +03:00
path = ./examples/cross-musl;
};
cross-rust-overlay = {
description = "Cross compiling a rust program using rust-overlay";
path = ./examples/cross-rust-overlay;
};
cross-windows = {
description = "Cross compiling a rust program for windows";
path = ./examples/cross-windows;
};
custom-toolchain = {
description = "Build a cargo project with a custom toolchain";
path = ./examples/custom-toolchain;
};
default = quick-start;
quick-start = {
description = "Build a cargo project";
path = ./examples/quick-start;
};
quick-start-simple = {
description = "Build a cargo project without extra checks";
path = ./examples/quick-start-simple;
};
};
} // flake-utils.lib.eachDefaultSystem (system:
2021-12-27 02:32:57 +03:00
let
2022-12-27 01:27:13 +03:00
pkgs = import nixpkgs {
inherit system;
};
packages.book =
let
inherit (pkgs) lib;
root = ./.;
rootPrefix = toString root;
cleanedSrc = lib.cleanSourceWith {
src = root;
filter = path: type:
let
relativePath = lib.removePrefix rootPrefix path;
in
lib.any (prefix: lib.hasPrefix prefix relativePath) [
"/docs" # Build the docs directory
"/examples" # But also include examples as we cross-reference them
"/README.md"
"/CHANGELOG.md"
];
};
in
pkgs.runCommand "crane-book" { } ''
${pkgs.mdbook}/bin/mdbook build --dest-dir $out ${cleanedSrc}/docs
'';
checks =
let
pkgsChecks = import nixpkgs {
inherit system;
overlays = [ rust-overlay.overlays.default ];
};
in
pkgsChecks.callPackages ./checks {
pkgs = pkgsChecks;
myLib = mkLib pkgsChecks;
2022-12-27 01:27:13 +03:00
myPkgs = packages;
};
# To override do: lib.overrideScope' (self: super: { ... });
2022-01-16 07:21:02 +03:00
lib = mkLib pkgs;
2021-12-27 02:32:57 +03:00
in
{
2022-12-27 01:27:13 +03:00
inherit checks lib packages;
2021-12-27 02:32:57 +03:00
formatter = pkgs.nixpkgs-fmt;
2022-11-21 03:28:49 +03:00
devShells.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
2022-05-29 23:26:42 +03:00
jq
2022-12-27 01:27:13 +03:00
mdbook
nixpkgs-fmt
];
2021-12-27 02:32:57 +03:00
};
});
2021-12-26 22:47:16 +03:00
}