hydra: add emacs overlay declarative project

This commit is contained in:
Antoine Eiche 2020-04-17 23:11:02 +02:00 committed by zimbatm
parent 13d0a2e1f7
commit 43f4ffd686
No known key found for this signature in database
GPG key ID: 71BAF6D40C1D63D7
2 changed files with 14 additions and 0 deletions

View file

@ -11,6 +11,7 @@ in
./buildkite.nix
./gitlab.nix
./hydra.nix
./hydra-declarative-projects.nix
./cache.nix
./nixpkgs-update.nix

View file

@ -0,0 +1,13 @@
{ lib, pkgs, config, ... }:
{
services.hydra.declarativeProjects = {
emacs-overlay = {
displayName = "Emacs Overlay";
inputValue = "https://github.com/nix-community/emacs-overlay";
specFile = "hydra/spec.json";
description = "Bleeding edge emacs overlay";
homepage = "https://github.com/nix-community/emacs-overlay";
};
};
}