1
Fork 0
shimmeringmoon/flake.nix

86 lines
2.5 KiB
Nix
Raw Normal View History

{
inputs = {
2024-09-23 19:46:53 +02:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
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";
};
outputs =
2024-09-23 19:46:53 +02:00
inputs:
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;
2024-10-05 00:44:54 +02:00
toolchain = inputs.fenix.packages.${system}.complete.toolchain;
2024-10-04 15:17:15 +02:00
spkgs = inputs.self.packages.${system};
inherit (pkgs) lib;
in
{
2024-10-04 15:17:15 +02:00
packages = {
kazesawa = pkgs.callPackage ./nix/kazesawa.nix { };
exo = pkgs.callPackage ./nix/exo.nix { };
geosans-light = pkgs.callPackage ./nix/geosans-light.nix { };
2024-09-09 18:06:07 +02:00
2024-10-04 15:17:15 +02:00
shimmering-fonts = pkgs.callPackage ./nix/fonts.nix {
# Pass custom-packaged fonts
inherit (spkgs) exo kazesawa geosans-light;
};
2024-09-09 18:06:07 +02:00
2024-10-04 15:17:15 +02:00
default = spkgs.shimmeringmoon;
shimmeringmoon = pkgs.callPackage ./nix/shimmeringmoon.nix {
# Pass the directory of fonts
inherit (spkgs) shimmering-fonts;
2024-09-09 18:06:07 +02:00
};
};
2024-10-04 15:17:15 +02:00
# {{{ Devshell
2024-09-23 21:12:04 +02:00
devShell = pkgs.mkShell rec {
2024-09-23 19:46:53 +02:00
nativeBuildInputs = with pkgs; [
2024-10-05 00:44:54 +02:00
# cargo
# rustc
# clippy
# rust-analyzer
# rustfmt
toolchain
2024-09-24 22:49:09 +02:00
2024-09-23 21:12:04 +02:00
ruff
imagemagick
pkg-config
2024-09-23 19:46:53 +02:00
];
2024-10-04 15:17:15 +02:00
2024-09-23 19:46:53 +02:00
buildInputs = with pkgs; [
freetype
fontconfig
leptonica
tesseract
sqlite
];
2024-09-23 21:12:04 +02:00
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
2024-10-04 15:17:15 +02:00
SHIMMERING_FONTS_DIR = spkgs.shimmering-fonts;
};
2024-10-04 15:17:15 +02:00
# }}}
}
);
# {{{ Caching and whatnot
nixConfig = {
extra-substituters = [ "https://nix-community.cachix.org" ];
extra-trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
# }}}
}