.github
datadog
doc
examples
hello.nix
foreman
src
t
.editorconfig
.gitignore
.perlcriticrc
.yath.rc
COPYING
INSTALL
Makefile.am
Procfile
README.md
bootstrap
configure.ac
default.nix
flake.lock
flake.nix
hydra-api.yaml
hydra-module.nix
shell.nix
version.txt
14 lines
346 B
Nix
14 lines
346 B
Nix
#
|
|
# jobset example file. This file canbe referenced as Nix expression
|
|
# in a jobset configuration along with inputs for nixpkgs and the
|
|
# repository containing this file.
|
|
#
|
|
{ ... }:
|
|
let
|
|
# <nixpkgs> is set to the value designated by the nixpkgs input of the
|
|
# jobset configuration.
|
|
pkgs = (import <nixpkgs> {});
|
|
in {
|
|
hello = pkgs.hello;
|
|
}
|