8 lines
141 B
Nix
8 lines
141 B
Nix
{ inputs, ... }:
|
|
_final: prev:
|
|
let
|
|
inherit (prev.stdenv.hostPlatform) system;
|
|
in
|
|
{
|
|
dae = inputs.dae.packages."${system}".dae-unstable;
|
|
}
|