zsh.nix/.hydra/jobsets.nix
jiriks74 0ae1fc0bf1
Some checks failed
Perform checks / formatting (push) Failing after 51s
Perform checks / nix_flake_check (push) Successful in 47s
feat(ci/cd): Set up Hydra
2025-01-10 07:23:09 +01:00

23 lines
513 B
Nix

let
pkgs = import <nixpkgs> {};
jobs = rec {
tarball =
pkgs.releaseTools.sourceTarball {
name = "hello-tarball";
src = <hello>;
buildInputs = (with pkgs; [ gettext texLive texinfo ]);
};
build =
{ system ? builtins.currentSystem }:
let pkgs = import <nixpkgs> { inherit system; }; in
pkgs.releaseTools.nixBuild {
name = "hello";
src = jobs.tarball;
configureFlags = [ "--disable-silent-rules" ];
};
};
in
jobs