hydra-config/mateamt.nix

16 lines
338 B
Nix

{ pkgs ? import <nixpkgs> (import <haskell-nix>)
}:
{
mateamt = pkgs.lib.hydraJob (import <mateamt> {
inherit pkgs;
} // {
meta = with pkgs.stdenv.lib; {
description = "A whole new matemat";
maintainers = [
{ email = "nek0@nek0.eu"; name = "nek0"; }
];
license = licenses.agpl3;
};
});
}