package rime-ice

This commit is contained in:
ulic-youthlic 2025-03-16 00:26:37 +08:00
parent e15627f5fc
commit f33adf3801
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
10 changed files with 71 additions and 55 deletions

View file

@ -2,8 +2,9 @@
final: prev:
let
inherit (prev) lib;
overlay-files = [
];
overlay-list = map (file: import file args) overlay-files;
in
(lib.composeManyExtensions overlay-list) final prev
[
./rime-ice.nix
]
|> map (file: import file args)
|> (overlays: (lib.composeManyExtensions overlays) final prev)

View file

@ -0,0 +1,9 @@
{ outputs, ... }:
final: prev:
let
inherit (final) stdenv;
inherit (stdenv.hostPlatform) system;
in
{
rime-ice = outputs.packages."${system}".rime-ice;
}