infra/services/hydra/declarative-projects.nix

35 lines
1.2 KiB
Nix
Raw Normal View History

{ 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";
};
2020-10-05 20:56:37 +02:00
nix-data = {
displayName = "nix-data";
inputValue = "https://github.com/nix-community/nix-data";
specFile = "spec.json";
description = "Standard set of packages and overlays for data-scientists";
homepage = "https://github.com/nix-community/nix-data";
};
simple-nixos-mailserver = {
displayName = "Simple NixOS MailServer";
inputValue = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver";
specFile = ".hydra/spec.json";
description = "A complete and Simple Nixos Mailserver";
homepage = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver";
};
2020-07-28 22:25:05 +02:00
redoxpkgs = {
displayName = "Redoxpkgs";
inputValue = "https://github.com/nix-community/redoxpkgs";
specFile = ".hydra/spec.json";
description = "Packages for Redox";
homepage = "https://github.com/nix-community/redoxpkgs";
};
};
}