blob: f93b3644343157dc22f65155fa4efc717ec53920 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ pkgs ? import <nixpkgs> {}
}:
let
forstio = (import ((builtins.fetchGit {
url = "git@git.keldu.de:forstio/forstio";
ref = "dev";
}).outPath + "/default.nix"){}).forstio;
kel-unit = (import ((builtins.fetchGit {
url = "git@git.keldu.de:libs/unit";
ref = "dev";
}).outPath + "/default.nix"){});
in pkgs.callPackage ./.nix/derivation.nix {
inherit forstio;
inherit kel-unit;
}
|