naersk/flake.nix

47 lines
1.6 KiB
Nix
Raw Normal View History

2020-01-15 19:03:12 +00:00
{
2022-07-09 10:08:57 +00:00
description = "Build Rust projects with ease. No configuration, no code generation; IFD and sandbox friendly.";
2020-01-15 19:03:12 +00:00
outputs = { self, nixpkgs }:
let
2021-07-08 17:12:09 +00:00
forAllSystems = nixpkgs.lib.genAttrs [ "x86_64-linux" "x86_64-darwin" "i686-linux" "aarch64-linux" "aarch64-darwin" ];
2022-07-09 10:08:57 +00:00
in rec {
lib = forAllSystems (system: nixpkgs.legacyPackages."${system}".callPackage ./default.nix { });
2022-07-09 10:08:57 +00:00
# Useful when composing with other flakes:
overlay = import ./overlay.nix;
defaultTemplate = templates.hello-world;
2022-07-09 10:08:57 +00:00
templates = {
hello-world = {
description = "A simple and straight-forward 'hello world' Rust program.";
path =
builtins.filterSource (path: type: baseNameOf path == "flake.nix")
./examples/hello-world;
};
2022-07-09 10:08:57 +00:00
cross-windows = {
description = "Pre-configured for cross-compiling to Windows.";
path =
builtins.filterSource (path: type: baseNameOf path == "flake.nix")
./examples/cross-windows;
};
2022-07-09 10:08:57 +00:00
static-musl = {
description = "Pre-configured for statically linked binaries for Linux with musl.";
path =
builtins.filterSource (path: type: baseNameOf path == "flake.nix")
./examples/static-musl;
};
2022-07-09 10:08:57 +00:00
multi-target = {
description = "A Rust project with multiple crates and build targets.";
path =
builtins.filterSource (path: type: baseNameOf path == "flake.nix")
./examples/multi-target;
};
};
};
2020-01-15 19:03:12 +00:00
}