zsh.nix/.hydra/jobsets.nix

24 lines
513 B
Nix
Raw Normal View History

2025-01-10 06:34:26 +01:00
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