10 lines
160 B
Nix
10 lines
160 B
Nix
|
|
{ outputs, ... }:
|
||
|
|
final: prev:
|
||
|
|
let
|
||
|
|
inherit (final) stdenv;
|
||
|
|
inherit (stdenv.hostPlatform) system;
|
||
|
|
in
|
||
|
|
{
|
||
|
|
rime-ice = outputs.packages."${system}".rime-ice;
|
||
|
|
}
|