2019-12-20 21:37:02 +01:00
|
|
|
# This file defines the derivations that should be built by CI.
|
2019-12-09 11:58:09 +01:00
|
|
|
#
|
2019-12-20 21:37:02 +01:00
|
|
|
# The plan is still to implement recursive tree traversal
|
|
|
|
# automatically and detect all derivations that have `meta.enableCI =
|
|
|
|
# true`, but this is currently more effort than it would save me.
|
2019-12-09 11:58:09 +01:00
|
|
|
|
|
|
|
let
|
2019-12-14 12:52:27 +01:00
|
|
|
pkgs = import ./default.nix {};
|
2019-12-09 11:58:09 +01:00
|
|
|
in with pkgs; [
|
2019-12-20 22:52:59 +01:00
|
|
|
nix.yants.tests
|
2019-12-20 21:37:02 +01:00
|
|
|
ops.journaldriver
|
|
|
|
ops.kms_pass
|
2019-12-20 23:19:52 +01:00
|
|
|
ops.kontemplate
|
2019-12-20 21:37:02 +01:00
|
|
|
ops.sync-gcsr
|
2020-01-20 12:59:21 +01:00
|
|
|
ops."posix_mq.rs"
|
2019-12-09 11:58:09 +01:00
|
|
|
tools.blog_cli
|
2019-12-21 15:51:12 +01:00
|
|
|
tools.cheddar
|
2019-12-14 17:00:04 +01:00
|
|
|
tools.emacs
|
2019-12-20 21:37:02 +01:00
|
|
|
web.cgit-taz
|
2020-01-19 23:08:50 +01:00
|
|
|
third_party.cgit
|
|
|
|
third_party.git
|
|
|
|
third_party.guile
|
|
|
|
third_party.lisp # will build all third-party libraries
|
2019-12-20 21:37:02 +01:00
|
|
|
# web.tazblog # TODO(tazjin): Happstack build failure in nixos-unstable
|
|
|
|
]
|