summaryrefslogtreecommitdiff
path: root/jobset-nixpkgs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'jobset-nixpkgs.nix')
-rw-r--r--jobset-nixpkgs.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/jobset-nixpkgs.nix b/jobset-nixpkgs.nix
new file mode 100644
index 0000000..c824fcb
--- /dev/null
+++ b/jobset-nixpkgs.nix
@@ -0,0 +1,21 @@
+{ supportedSystems ? ["i686-linux" "x86_64-linux"] }:
+
+with (import <nixpkgs/pkgs/top-level/release-lib.nix> { inherit supportedSystems; });
+
+{
+
+ # Simply assign a derivation to an attribute to have it built.
+ hello_world_1 = pkgs_x86_64_linux.hello;
+
+ # 'hydraJob' strips all non-essential attributes.
+ hello_world_2 = pkgs.lib.hydraJob pkgs_x86_64_linux.hello;
+
+ # Generate one attribute per supported platform.
+ hello_world_3 = pkgs.lib.genAttrs supportedSystems (system: (pkgsFor system).hello);
+
+} // mapTestOn {
+
+ # Fancy shortcut to generate one attribute per supported platform.
+ hello = supportedSystems;
+
+} \ No newline at end of file