about summary refs log tree commit diff
path: root/ci-builds.nix
blob: ac54c76a2ddcbda31bdc368733f35f6ecbae26ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# This file defines the derivations that should be built by CI.
#
# 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.

let
  pkgs = import ./default.nix {};
in with pkgs; [
  nix.yants.tests
  ops.journaldriver
  ops.kms_pass
  ops.kontemplate
  ops.sync-gcsr
  tools.blog_cli
  tools.cheddar
  tools.emacs
  web.cgit-taz
  third_party.cgit
  third_party.git
  third_party.guile
  third_party.lisp # will build all third-party libraries
  # web.tazblog #  TODO(tazjin): Happstack build failure in nixos-unstable
]