zsh.nix/.hydra/jobsets.nix
jiriks74 2cf77fac11
Some checks failed
Perform checks / nix_flake_check (push) Has been cancelled
Perform checks / formatting (push) Has been cancelled
feat(ci/cd): Set up Hydra
2025-01-10 07:22:34 +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