maybe release.nix is fixed now?

dev
Claudius Holeksa 2023-02-02 18:02:56 +01:00
parent b04614af59
commit cc7c7e37f5
1 changed files with 2 additions and 4 deletions

View File

@ -5,14 +5,12 @@
let
pkgs = import nixpkgs {};
forstioJobset = import "$(forstio)"/.nix/release.nix {
inherit nixpkgs;
};
forstioJobset = import "$(forstio)"/.nix/release.nix;
in
{
keldu = {
forstio-window = pkgs.callPackage ./derivation.nix {
forstio = builtins.getAttr (forstioJobset.keldu.forstio);
forstio = forstioJobset.keldu.forstio;
};
};
}