Update '.nix/release.nix'

keldu 2023-02-09 11:25:35 +01:00
parent 30a45a52ac
commit 1f17dac3b8
1 changed files with 11 additions and 3 deletions

View File

@ -1,9 +1,17 @@
{ ... }:
{ nixpkgs ? <nixpkgs>
, forstio ? {outPath = ../forstio;}
}:
let
pkgs = (import <nixpkgs>{});
pkgs = import nixpkgs{};
forstioJobSet = import "${forstio}/.nix/release.nix" {
inherit nixpkgs forstio;
};
forstio = builtins.getAttr (builtins.currentSystem) (forstioJobset);
in
{
keldu = {
forstio-window = pkgs.callPackage ./derivation.nix {};
forstio-window = pkgs.callPackage ./derivation.nix {
inherit forstio;
};
};
}