npins: +eepy

This commit is contained in:
Primrose 2025-07-08 08:13:41 +02:00
parent e49ffcdaec
commit a84feeceec
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 22 additions and 0 deletions

8
nix/overlays/eepy.nix Normal file
View file

@ -0,0 +1,8 @@
let
sources = import ../../npins;
inherit (sources) eepy;
inherit (eepy.repository) owner repo;
in
final: _: {
eepy = (builtins.getFlake "github:${owner}/${repo}/${eepy.revision}").packages.${final.system}.default;
}