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