Genode Packages collection
https://git.sr.ht/~ehmry/genodepkgs/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
488 B
26 lines
488 B
# 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"; |
|
}; |
|
|
|
}
|
|
|