mdbook-container/flake.nix

41 lines
1.3 KiB
Nix
Raw Normal View History

2022-11-27 21:55:46 +01:00
{
2022-12-03 17:04:48 +01:00
description = "an container for mdbook with the toc plugin";
2022-11-27 21:55:46 +01:00
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
2022-12-03 15:24:15 +01:00
let inherit (flake-utils.lib) eachSystem system;
in eachSystem [ system.x86_64-linux ] (system:
2022-11-27 21:55:46 +01:00
let pkgs = nixpkgs.legacyPackages.${system};
in {
packages = rec {
2022-12-18 12:21:14 +01:00
default = mdbook-toc;
2022-12-06 07:55:25 +01:00
container = pkgs.dockerTools.buildLayeredImage {
2022-12-03 17:04:48 +01:00
name = "mdbook-container";
2022-12-03 15:19:25 +01:00
contents = [
(pkgs.buildEnv {
name = "mdbook-env";
paths = with pkgs; [ busybox mdbook mdbook-toc ];
})
];
2022-11-27 21:55:46 +01:00
config.Cmd = [ "${pkgs.mdbook}/bin/mdbook" ];
};
mdbook-toc = pkgs.rustPlatform.buildRustPackage rec {
pname = "mdbook-toc";
2022-12-18 12:21:14 +01:00
version = "0.11.0";
2022-11-27 21:55:46 +01:00
src = pkgs.fetchFromGitHub {
owner = "badboy";
repo = pname;
rev = version;
2022-12-18 12:21:14 +01:00
sha256 = "sha256-ORJV2+Uh8GwXU+EWUQ2ls+AcplYbpYhl6hvCuFdKpTk=";
2022-11-27 21:55:46 +01:00
};
2022-12-18 12:21:14 +01:00
cargoSha256 = "sha256-s+xlrHaynHTMmm7rfjYrWNlIJRHO0QTjMlcV+LjqHNs=";
2022-11-27 21:55:46 +01:00
};
};
});
}