mirror of
https://github.com/ipetkov/crane.git
synced 2024-11-23 08:22:41 +03:00
5d5803ff75
The only thing used from this library was the toTOML which is now handled directly in the TOML writer.
88 lines
2.1 KiB
Nix
88 lines
2.1 KiB
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
|
|
flake-compat = {
|
|
url = "github:edolstra/flake-compat";
|
|
flake = false;
|
|
};
|
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = inputs@{ self, nixpkgs, flake-utils, ... }:
|
|
let
|
|
mkMyPkgs = callPackage: import ./pkgs callPackage;
|
|
myPkgsFor = pkgs: mkMyPkgs pkgs.callPackage;
|
|
|
|
mkLib = pkgs: import ./lib {
|
|
inherit (pkgs) lib newScope;
|
|
inherit mkMyPkgs;
|
|
};
|
|
in
|
|
{
|
|
inherit mkLib;
|
|
|
|
overlays.default = final: prev: myPkgsFor final;
|
|
|
|
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";
|
|
path = ./examples/cross-musl;
|
|
};
|
|
|
|
cross-rust-overlay = {
|
|
description = "Cross compiling a rust program using rust-overlay";
|
|
path = ./examples/cross-rust-overlay;
|
|
};
|
|
|
|
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:
|
|
let
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
};
|
|
|
|
# To override do: lib.overrideScope' (self: super: { ... });
|
|
lib = mkLib pkgs;
|
|
myPkgs = myPkgsFor pkgs;
|
|
|
|
checks = pkgs.callPackages ./checks {
|
|
inherit pkgs myPkgs;
|
|
myLib = lib;
|
|
};
|
|
in
|
|
{
|
|
inherit checks lib;
|
|
|
|
packages = myPkgs;
|
|
|
|
devShells.default = pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
jq
|
|
nixpkgs-fmt
|
|
];
|
|
};
|
|
});
|
|
}
|