maybe release.nix is fixed now?

dev
Claudius Holeksa 2023-02-02 17:58:52 +01:00
parent e4f0828e33
commit aabb089f90
2 changed files with 11 additions and 5 deletions

View File

@ -7,7 +7,7 @@
, clang_12
, clang-tools
, gnutls
, keldu
, forstio
}:
stdenvNoCC.mkDerivation {
@ -21,7 +21,7 @@ stdenvNoCC.mkDerivation {
];
buildInputs = [
keldu.forstio
forstio
];
src = ./..;

View File

@ -1,12 +1,18 @@
{ nixpkgs ? import <nixpkgs>
{ nixpkgs ? <nixpkgs>
, forstio
, ...
}:
let
pkgs = nixpkgs;
pkgs = import nixpkgs {};
forstioJobset = import "$(forstio)"/.nix/release.nix {
inherit nixpkgs;
};
in
{
keldu = {
forstio-window = pkgs.callPackage ./derivation.nix {};
forstio-window = pkgs.callPackage ./derivation.nix {
forstio = forstioJobset.keldu.forstio;
};
};
}