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 21:37:02 +01:00
|
|
|
ops.journaldriver
|
|
|
|
ops.kms_pass
|
|
|
|
ops.sync-gcsr
|
2019-12-09 11:58:09 +01:00
|
|
|
tools.blog_cli
|
2019-12-14 17:00:04 +01:00
|
|
|
tools.emacs
|
2019-12-20 21:37:02 +01:00
|
|
|
web.cgit-taz
|
2019-12-09 11:58:09 +01:00
|
|
|
|
2019-12-20 21:37:02 +01:00
|
|
|
# web.tazblog # TODO(tazjin): Happstack build failure in nixos-unstable
|
|
|
|
]
|