fix: overlay was broken T-T
All checks were successful
/ check (push) Successful in 1m22s
/ build (push) Successful in 2s

This commit is contained in:
Jalil David Salamé Messina 2024-10-28 22:37:24 +01:00
parent e61913e5a8
commit 618670512e
Signed by: jalil
GPG key ID: F016B9E770737A0B
5 changed files with 13 additions and 10 deletions

View file

@ -1,7 +1,16 @@
{ inputs, lib, ... }:
{ withSystem, inputs, ... }:
{
flake.overlays.default =
final: prev:
withSystem prev.stdenv.hostPlatform.system (
{ self', ... }:
{
inherit (self'.packages) webnsupdate;
}
);
perSystem =
{ pkgs, ... }:
{ pkgs, lib, ... }:
let
craneLib = inputs.crane.mkLib pkgs;
src = craneLib.cleanCargoSource inputs.self;