You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
488 B
Nix
27 lines
488 B
Nix
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
{ nixpkgs, packages, dhallApps }:
|
|
|
|
rec {
|
|
nova-image = let
|
|
drv = import ./nova-image {
|
|
stdenv = packages.stdenv;
|
|
inherit nixpkgs dhallApps packages;
|
|
};
|
|
in {
|
|
type = "app";
|
|
program = "${drv}/bin/nova-image";
|
|
};
|
|
|
|
nova-iso = let
|
|
drv = import ./nova-iso {
|
|
stdenv = packages.stdenv;
|
|
inherit nixpkgs dhallApps packages nova-image;
|
|
};
|
|
in {
|
|
type = "app";
|
|
program = "${drv}/bin/nova-iso";
|
|
};
|
|
|
|
}
|