hydra-config/mateamt.nix

16 lines
338 B
Nix
Raw Normal View History

2019-12-17 18:22:50 +01:00
{ pkgs ? import <nixpkgs> (import <haskell-nix>)
2019-11-15 18:39:55 +01:00
}:
2019-12-17 18:22:50 +01:00
{
2019-12-20 23:29:54 +01:00
mateamt = pkgs.lib.hydraJob (import <mateamt> {
2019-12-17 18:22:50 +01:00
inherit pkgs;
} // {
2019-12-20 22:56:02 +01:00
meta = with pkgs.stdenv.lib; {
description = "A whole new matemat";
maintainers = [
{ email = "nek0@nek0.eu"; name = "nek0"; }
];
license = licenses.agpl3;
};
2019-12-17 18:22:50 +01:00
});
}