forstio-window/default.nix

26 lines
630 B
Nix
Raw Permalink Normal View History

2023-04-02 20:19:26 +02:00
{ pkgs ? import <nixpkgs> {}
2023-02-02 17:40:41 +01:00
}:
2023-02-02 17:37:43 +01:00
2023-02-23 13:09:04 +01:00
let
2023-04-02 20:19:26 +02:00
forstio = {
core =
import ((builtins.fetchGit {
url = "gitea@git.keldu.de:forstio/forstio-core.git";
ref = "master";
}).outPath + "/default.nix") {};
async =
import ((builtins.fetchGit {
url = "gitea@git.keldu.de:forstio/forstio-async.git";
ref = "master";
}).outPath + "/default.nix") {};
io =
import ((builtins.fetchGit {
url = "gitea@git.keldu.de:forstio/forstio-io.git";
ref = "master";
}).outPath + "/default.nix") {};
};
2023-02-23 13:09:04 +01:00
in
pkgs.callPackage ./.nix/derivation.nix {
inherit forstio;
}