hydra-config/mateamt.nix

16 lines
351 B
Nix

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