summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/default.nix
blob: ea14e02a41032c869cc1a37530fb708b01333d4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
pkgs: oldpkgs:
with import <stockholm/lib>;
  {}
  // import ./haskell pkgs oldpkgs
  // import ./simple pkgs oldpkgs
  // import ./writers.nix pkgs oldpkgs
  // {
    ReaktorPlugins = pkgs.callPackage ./simple/Reaktor/plugins.nix {};

    buildbot-full = pkgs.callPackage ./simple/buildbot {
      plugins = with pkgs.buildbot-plugins; [ www console-view waterfall-view ];
    };
    buildbot-worker = pkgs.callPackage ./simple/buildbot/worker.nix {};

    # https://github.com/proot-me/PRoot/issues/106
    proot = pkgs.writeDashBin "proot" ''
      export PROOT_NO_SECCOMP=1
      exec ${oldpkgs.proot}/bin/proot "$@"
    '';

    # XXX symlinkJoin changed arguments somewhere around nixpkgs d541e0d
    symlinkJoin = { name, paths, ... }@args: let
      x = oldpkgs.symlinkJoin args;
    in if typeOf x != "lambda" then x else oldpkgs.symlinkJoin name paths;

    test = {
      infest-cac-centos7 = pkgs.callPackage ./test/infest-cac-centos7 {};
    };
  }