mirror of
https://github.com/ipetkov/crane.git
synced 2024-11-22 23:17:15 +03:00
a3f0c63eed
We don't need to nest `cleanCargoSource` and `path` just to populate a default value for `name`. As they both ultimately delegate to `builtins.path`, the nesting can lead to IFD in situations which are otherwise avoidable
107 lines
3.9 KiB
Nix
107 lines
3.9 KiB
Nix
{
|
|
description = "Build a cargo project with alternative crate registries";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
|
|
crane = {
|
|
url = "github:ipetkov/crane";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
flake-utils = {
|
|
url = "github:numtide/flake-utils";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, crane, flake-utils, ... }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
craneLibOrig = crane.mkLib pkgs;
|
|
craneLib = craneLibOrig.appendCrateRegistries [
|
|
# Automatically infer the download URL from the registry's index
|
|
#
|
|
# Note that this approach requires checking out the full index at the specified revision
|
|
# and adding a copy to the Nix store.
|
|
#
|
|
# Also note that the specified git revision _does not need to track updates to the index
|
|
# itself_ as long as the pinned revision contains the most recent version of the
|
|
# registry's `config.json` file. In other words, this commit revision only needs to be
|
|
# updated if the `config.json` file changes the download endpoint for this registry.
|
|
(craneLibOrig.registryFromGitIndex {
|
|
indexUrl = "https://github.com/Hirevo/alexandrie-index";
|
|
rev = "90df25daf291d402d1ded8c32c23d5e1498c6725";
|
|
fetchurlExtraArgs = {
|
|
# Extra parameters which will be passed to the fetchurl invocation for each crate
|
|
};
|
|
})
|
|
|
|
# If the registry in question is a sparse index, instead configure as
|
|
#(craneLibOrig.registryFromSparse {
|
|
# indexUrl = "https://index.crates.io";
|
|
# # where the sha256 is the sha256 of https://index.crates.io/config.json.
|
|
# configSha256 = "d16740883624df970adac38c70e35cf077a2a105faa3862f8f99a65da96b14a3";
|
|
# fetchurlExtraArgs = {
|
|
# # Extra parameters which will be passed to the fetchurl invocation for each crate
|
|
# };
|
|
#})
|
|
|
|
# As a more lightweight alternative, the `dl` endpoint of the registry's `config.json`
|
|
# file can be copied here to avoid needing to copy the index to the Nix store.
|
|
# (craneLibOrig.registryFromDownloadUrl {
|
|
# indexUrl = "https://github.com/Hirevo/alexandrie-index";
|
|
# dl = "https://crates.polomack.eu/api/v1/crates/{crate}/{version}/download";
|
|
# fetchurlExtraArgs = {
|
|
# # Extra parameters which will be passed to the fetchurl invocation for each crate
|
|
# };
|
|
# })
|
|
];
|
|
|
|
my-crate = craneLib.buildPackage {
|
|
src = craneLib.cleanCargoSource ./.;
|
|
strictDeps = true;
|
|
|
|
buildInputs = [
|
|
# Add additional build inputs here
|
|
pkgs.openssl
|
|
] ++ pkgs.lib.optionals pkgs.stdenv.isDarwin [
|
|
# Additional darwin specific inputs can be set here
|
|
pkgs.libiconv
|
|
pkgs.darwin.apple_sdk.frameworks.Security
|
|
];
|
|
|
|
# Specific to our example, but not always necessary in the general case.
|
|
nativeBuildInputs = [
|
|
pkgs.pkg-config
|
|
];
|
|
};
|
|
in
|
|
{
|
|
checks = {
|
|
# Build the crate as part of `nix flake check` for convenience
|
|
inherit my-crate;
|
|
};
|
|
|
|
packages.default = my-crate;
|
|
|
|
apps.default = flake-utils.lib.mkApp {
|
|
drv = my-crate;
|
|
};
|
|
|
|
devShells.default = craneLib.devShell {
|
|
# Inherit inputs from checks.
|
|
checks = self.checks.${system};
|
|
|
|
# Additional dev-shell environment variables can be set directly
|
|
# MY_CUSTOM_DEVELOPMENT_VAR = "something else";
|
|
|
|
# Extra inputs can be added here; cargo and rustc are provided by default.
|
|
packages = [
|
|
# pkgs.ripgrep
|
|
];
|
|
};
|
|
});
|
|
}
|