ha-now-playing/flake.nix

105 lines
3 KiB
Nix
Raw Normal View History

2021-11-19 17:44:10 +01:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2022-11-18 09:49:45 +01:00
flake-utils.url = "github:numtide/flake-utils";
2021-11-21 20:39:07 +01:00
naersk = {
url = "github:nmattia/naersk/master";
inputs.nixpkgs.follows = "nixpkgs";
};
2022-01-14 10:06:26 +01:00
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
2022-11-18 09:49:45 +01:00
inputs.flake-utils.follows = "flake-utils";
};
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs.flake-utils.follows = "flake-utils";
2022-01-14 10:06:26 +01:00
};
2021-11-19 17:44:10 +01:00
};
2022-11-18 09:49:45 +01:00
outputs = { self, nixpkgs, flake-utils, naersk, rust-overlay, pre-commit-hooks }:
flake-utils.lib.eachDefaultSystem (system:
2021-11-20 17:37:14 +01:00
let
2022-01-14 10:06:26 +01:00
overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs { inherit system overlays; };
2021-11-23 14:23:12 +01:00
naersk-lib = pkgs.callPackage naersk { };
rustToolchain =
2022-11-18 09:49:45 +01:00
pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
2021-11-20 17:37:14 +01:00
in
2022-11-18 09:49:45 +01:00
{
formatter = pkgs.nixpkgs-fmt;
2021-11-23 14:23:12 +01:00
2022-11-18 09:49:45 +01:00
packages = {
ha-now-playing = (naersk-lib.override {
cargo = rustToolchain;
rustc = rustToolchain;
}).buildPackage
{
pname = "ha-now-playing";
root = ./.;
buildInputs = with pkgs; [
rustToolchain
openssl
];
nativeBuildInputs = with pkgs; [
pkgconf
cargo-edit
cargo-expand
cargo-diet
cargo-feature
cargo-outdated
rust-analyzer
pre-commit
jq
gitflow
yaml-language-server
];
};
};
packages.default = self.packages.${system}.ha-now-playing;
2021-11-19 17:44:10 +01:00
2022-11-18 09:49:45 +01:00
apps.ha-now-playing = flake-utils.lib.mkApp {
drv = self.packages.${system}.default;
2021-11-20 17:37:14 +01:00
};
2022-11-18 09:49:45 +01:00
apps.default = self.apps.${system}.ha-now-playing;
2021-11-19 17:44:10 +01:00
2022-11-18 09:49:45 +01:00
overlays = _final: _prev: {
inherit (self.packages.${system}) ha-now-playing;
};
checks = {
pre-commit-check = pre-commit-hooks.lib.${system}.run {
src = ./.;
hooks = {
nixpkgs-fmt.enable = true;
statix.enable = true;
deadnix.enable = true;
rust-overlay-clippy = {
enable = true;
name = "rust-overlay clippy";
entry = "${rustToolchain}/bin/cargo-clippy clippy";
files = "\\.rs$";
excludes = [ "^$" ];
types = [ "file" ];
types_or = [ ];
language = "system";
pass_filenames = false;
};
2022-11-18 09:49:45 +01:00
};
};
2021-11-23 14:23:12 +01:00
};
2022-03-23 10:51:43 +01:00
devShells.default = with pkgs; mkShell {
2022-11-18 09:49:45 +01:00
inherit (self.checks.${system}.pre-commit-check) shellHook;
name = "ha-now-playing";
inputsFrom = [ self.packages.${system}.ha-now-playing ];
2021-11-19 17:44:10 +01:00
};
2021-11-20 17:37:14 +01:00
});
2021-11-19 17:44:10 +01:00
}