Switched to nixpkgs-unstable Replaced postgresql dependency with much smaller libpq. Utilise new inputs.self.submodules feature to simplify flake use Moved apps to a separate file Changelog-None
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{
|
|
description = "Core Lightning (CLN): A specification compliant Lightning Network implementation in C";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
|
|
crane.url = "github:ipetkov/crane";
|
|
|
|
treefmt-nix = {
|
|
url = "github:numtide/treefmt-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
advisory-db = {
|
|
url = "github:rustsec/advisory-db";
|
|
flake = false;
|
|
};
|
|
|
|
self.submodules = true;
|
|
};
|
|
|
|
outputs =
|
|
inputs@{
|
|
self,
|
|
nixpkgs,
|
|
flake-parts,
|
|
...
|
|
}:
|
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
|
systems = nixpkgs.lib.systems.flakeExposed;
|
|
imports = [
|
|
inputs.treefmt-nix.flakeModule
|
|
./nix/pkgs/flake-module.nix
|
|
./nix/checks/flake-module.nix
|
|
./nix/apps.nix
|
|
./nix/shells.nix
|
|
./nix/treefmt.nix
|
|
];
|
|
perSystem =
|
|
{
|
|
config,
|
|
pkgs,
|
|
self',
|
|
system,
|
|
...
|
|
}:
|
|
{
|
|
_module.args.pkgs = import inputs.nixpkgs {
|
|
inherit system;
|
|
overlays = [ (final: prev: { craneLib = (inputs.crane.mkLib pkgs); }) ];
|
|
};
|
|
};
|
|
};
|
|
}
|