stockholm/krebs/5pkgs/default.nix

63 lines
2.1 KiB
Nix
Raw Normal View History

2016-02-14 15:43:44 +00:00
{ config, lib, pkgs, ... }@args:
2016-10-20 18:54:38 +00:00
with import <stockholm/lib>;
{
nixpkgs.config.packageOverrides = oldpkgs: let
2016-03-05 21:23:57 +00:00
# This callPackage will try to detect obsolete overrides.
callPackage = path: args: let
override = pkgs.callPackage path args;
upstream = optionalAttrs (override ? "name")
(oldpkgs.${(parseDrvName override.name).name} or {});
2016-03-05 21:23:57 +00:00
in if upstream ? "name" &&
override ? "name" &&
compareVersions upstream.name override.name != -1
then trace "Upstream `${upstream.name}' gets overridden by `${override.name}'." override
else override;
in {}
// import ./builders.nix args
// mapAttrs (_: flip callPackage {})
2016-10-13 19:06:43 +00:00
(filterAttrs (_: dir: pathExists (dir + "/default.nix"))
(subdirsOf ./.))
// {
2016-06-07 20:51:35 +00:00
empty = pkgs.runCommand "empty-1.0.0" {} "mkdir $out";
haskellPackages = oldpkgs.haskellPackages.override {
overrides = self: super:
mapAttrs (name: path: self.callPackage path {})
(mapAttrs'
(name: type:
if hasSuffix ".nix" name
then {
name = removeSuffix ".nix" name;
value = ./haskell-overrides + "/${name}";
}
else null)
(builtins.readDir ./haskell-overrides));
};
2015-10-17 03:50:58 +00:00
2016-03-05 21:23:57 +00:00
ReaktorPlugins = callPackage ./Reaktor/plugins.nix {};
2016-11-15 22:26:55 +00:00
buildbot = callPackage ./buildbot {};
buildbot-full = callPackage ./buildbot {
plugins = with pkgs.buildbot-plugins; [ www console-view waterfall-view ];
};
buildbot-worker = callPackage ./buildbot/worker.nix {};
2017-02-09 08:50:28 +00:00
# https://github.com/proot-me/PRoot/issues/106
proot = pkgs.writeDashBin "proot" ''
export PROOT_NO_SECCOMP=1
exec ${oldpkgs.proot}/bin/proot "$@"
'';
2017-02-09 08:50:28 +00:00
2016-05-19 21:55:29 +00:00
# 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;
2016-05-19 21:55:29 +00:00
test = {
2016-03-05 21:23:57 +00:00
infest-cac-centos7 = callPackage ./test/infest-cac-centos7 {};
};
};
2015-07-24 10:03:51 +00:00
}