2024-06-22 16:40:56 +02:00
|
|
|
{
|
|
|
|
inputs = {
|
2024-09-23 19:46:53 +02:00
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
2024-06-22 16:40:56 +02:00
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
fenix.url = "github:nix-community/fenix";
|
|
|
|
fenix.inputs.nixpkgs.follows = "nixpkgs";
|
2024-09-23 19:46:53 +02:00
|
|
|
rust-overlay.url = "github:oxalica/rust-overlay";
|
|
|
|
rust-overlay.inputs.nixpkgs.follows = "nixpkgs";
|
2024-06-22 16:40:56 +02:00
|
|
|
};
|
|
|
|
|
2024-08-08 23:26:13 +02:00
|
|
|
outputs =
|
2024-09-23 19:46:53 +02:00
|
|
|
inputs:
|
2024-08-08 23:26:13 +02:00
|
|
|
inputs.flake-utils.lib.eachSystem (with inputs.flake-utils.lib.system; [ x86_64-linux ]) (
|
|
|
|
system:
|
|
|
|
let
|
2024-09-23 21:12:04 +02:00
|
|
|
pkgs = inputs.nixpkgs.legacyPackages.${system};
|
|
|
|
# pkgs = inputs.nixpkgs.legacyPackages.${system}.extend (import inputs.rust-overlay);
|
|
|
|
# pkgs = import inputs.nixpkgs {
|
|
|
|
# inherit system;
|
|
|
|
# overlays = [ (import inputs.rust-overlay) ];
|
|
|
|
# };
|
2024-09-23 19:46:53 +02:00
|
|
|
# toolchain = pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default);
|
|
|
|
# toolchain = pkgs.rust-bin.stable.latest.default;
|
|
|
|
toolchain = inputs.fenix.packages.${system}.complete.toolchain;
|
2024-08-08 23:26:13 +02:00
|
|
|
inherit (pkgs) lib;
|
|
|
|
in
|
|
|
|
{
|
2024-09-09 18:06:07 +02:00
|
|
|
packages.shimmeringmoon = pkgs.rustPlatform.buildRustPackage {
|
|
|
|
pname = "shimmeringmoon";
|
|
|
|
version = "unstable-2024-09-06";
|
|
|
|
|
|
|
|
src = lib.cleanSource ./.;
|
|
|
|
|
|
|
|
cargoLock = {
|
|
|
|
lockFile = ./Cargo.lock;
|
|
|
|
outputHashes = {
|
|
|
|
"hypertesseract-0.1.0" = "sha256-G0dos5yvvcfBKznAo1IIzLgXqRDxmyZwB93QQ6hVZSo=";
|
|
|
|
"plotters-0.4.0" = "sha256-9wtd7lig1vQ2RJVaEHdicfPZy2AyuoNav8shPMZ1EuE=";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2024-09-23 21:12:04 +02:00
|
|
|
devShell = pkgs.mkShell rec {
|
2024-09-23 19:46:53 +02:00
|
|
|
nativeBuildInputs = with pkgs; [
|
2024-09-24 22:49:09 +02:00
|
|
|
cargo
|
|
|
|
rustc
|
|
|
|
clippy
|
|
|
|
rust-analyzer
|
|
|
|
rustfmt
|
|
|
|
|
2024-09-23 21:12:04 +02:00
|
|
|
ruff
|
|
|
|
imagemagick
|
2024-08-08 23:26:13 +02:00
|
|
|
pkg-config
|
2024-06-22 16:40:56 +02:00
|
|
|
|
2024-09-23 19:46:53 +02:00
|
|
|
# clang
|
|
|
|
# llvmPackages.clang
|
|
|
|
];
|
|
|
|
buildInputs = with pkgs; [
|
|
|
|
freetype
|
|
|
|
fontconfig
|
2024-08-08 23:26:13 +02:00
|
|
|
leptonica
|
|
|
|
tesseract
|
2024-09-23 19:46:53 +02:00
|
|
|
# openssl
|
2024-08-08 23:26:13 +02:00
|
|
|
sqlite
|
|
|
|
];
|
2024-06-22 16:40:56 +02:00
|
|
|
|
2024-09-23 21:12:04 +02:00
|
|
|
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
|
2024-06-22 16:40:56 +02:00
|
|
|
|
2024-08-08 23:26:13 +02:00
|
|
|
# compilation of -sys packages requires manually setting LIBCLANG_PATH
|
2024-09-23 19:46:53 +02:00
|
|
|
# LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib";
|
2024-08-08 23:26:13 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
2024-06-22 16:40:56 +02:00
|
|
|
|
|
|
|
# {{{ Caching and whatnot
|
|
|
|
nixConfig = {
|
2024-08-08 23:26:13 +02:00
|
|
|
extra-substituters = [ "https://nix-community.cachix.org" ];
|
2024-06-22 16:40:56 +02:00
|
|
|
|
|
|
|
extra-trusted-public-keys = [
|
|
|
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
|
|
|
];
|
|
|
|
};
|
|
|
|
# }}}
|
|
|
|
}
|