summaryrefslogtreecommitdiff
path: root/default.nix
blob: c4bf675d26d5577cd47e286ff6a37cfb4990c5cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs ? import <nixpkgs> {}
}:

let
  forstio = (import ((builtins.fetchGit {
    url = "git@git.keldu.de:forstio/forstio";
    ref = "dev";

  }).outPath + "/default.nix"){}).forstio;

in pkgs.callPackage ./.nix/derivation.nix {
  inherit forstio;
}