rust-nix-template/flake.nix

87 lines
2.8 KiB
Nix
Raw Normal View History

2021-04-08 19:10:55 +02:00
# This file is pretty general, and you can adapt it in your project replacing
# only `name` and `description` below.
2021-04-07 00:17:50 +02:00
{
2021-04-08 19:10:55 +02:00
description = "...";
2021-04-07 00:17:50 +02:00
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
utils.url = "github:numtide/flake-utils";
2021-04-08 06:06:28 +02:00
rust-overlay.url = "github:oxalica/rust-overlay";
crate2nix = {
url = "github:balsoft/crate2nix/tools-nix-version-comparison";
flake = false;
};
2021-04-07 05:25:05 +02:00
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
2021-04-07 00:17:50 +02:00
};
2021-04-08 19:10:55 +02:00
outputs = { self, nixpkgs, utils, rust-overlay, crate2nix, ... }:
let
name = "bouncy";
in utils.lib.eachDefaultSystem
(system:
2021-04-08 19:10:55 +02:00
let
# Imports
2021-04-08 06:06:28 +02:00
pkgs = import nixpkgs {
inherit system;
overlays = [
rust-overlay.overlay
(self: super: {
# Because rust-overlay bundles multiple rust packages into one
2021-04-08 19:10:55 +02:00
# derivation, specify that mega-bundle here, so that crate2nix
2021-04-08 06:06:28 +02:00
# will use them automatically.
rustc = self.rust-bin.stable.latest.default;
cargo = self.rust-bin.stable.latest.default;
})
];
};
inherit (import "${crate2nix}/tools.nix" { inherit pkgs; })
generatedCargoNix;
2021-04-08 19:10:55 +02:00
# Create the cargo2nix project
project = pkgs.callPackage (generatedCargoNix {
2021-04-08 19:10:55 +02:00
inherit name;
src = ./.;
}) {
# Individual crate overrides go here
# Example: https://github.com/balsoft/simple-osd-daemons/blob/6f85144934c0c1382c7a4d3a2bbb80106776e270/flake.nix#L28-L50
2021-04-08 19:10:55 +02:00
defaultCrateOverrides = pkgs.defaultCrateOverrides // {
# The himalaya crate itself is overriden here. Typically we
# configure non-Rust dependencies (see below) here.
${name} = oldAttrs: {
inherit buildInputs nativeBuildInputs;
} // buildEnvVars;
};
};
# Configuration for the non-Rust dependencies
buildInputs = with pkgs; [ openssl.dev ];
nativeBuildInputs = with pkgs; [ rustc cargo pkgconfig ];
buildEnvVars = {
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
2021-04-07 00:17:50 +02:00
};
in rec {
2021-04-08 19:10:55 +02:00
packages.${name} = project.rootCrate.build;
# `nix build`
2021-04-08 19:10:55 +02:00
defaultPackage = packages.${name};
# `nix run`
2021-04-08 19:10:55 +02:00
apps.${name} = utils.lib.mkApp {
inherit name;
drv = packages.${name};
};
2021-04-08 19:10:55 +02:00
defaultApp = apps.${name};
# `nix develop`
devShell = pkgs.mkShell {
2021-04-08 19:10:55 +02:00
inherit buildInputs nativeBuildInputs;
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
2021-04-08 19:10:55 +02:00
} // buildEnvVars;
2021-04-07 00:17:50 +02:00
}
);
}