summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortilpner2018-12-16 18:40:38 +0100
committertilpner2018-12-16 18:40:38 +0100
commit4602dd8a4d400d0cd3817e77fb49e319371b352a (patch)
treec85b168f3946c0ffa96fd99af37684cc2e54231a
parentb8499aaeeb2c11c555b473df99350a4b9e29d3a3 (diff)
downloadjobsets-4602dd8a4d400d0cd3817e77fb49e319371b352a.tar.gz
jobsets-4602dd8a4d400d0cd3817e77fb49e319371b352a.tar.xz
jobsets-4602dd8a4d400d0cd3817e77fb49e319371b352a.zip
Delete unsuccessful declarative jobset config
-rw-r--r--jobset-nixpkgs.nix21
-rw-r--r--spec.json15
2 files changed, 0 insertions, 36 deletions
diff --git a/jobset-nixpkgs.nix b/jobset-nixpkgs.nix
deleted file mode 100644
index c824fcb..0000000
--- a/jobset-nixpkgs.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ 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
diff --git a/spec.json b/spec.json
deleted file mode 100644
index 914f7a0..0000000
--- a/spec.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- "enabled": 1,
- "hidden": false,
- "description": "cfg",
- "nixexprinput": "src",
- "nixexprpath": "jobset-nixpkgs.nix",
- "checkinterval": 60,
- "schedulingshares": 100,
- "enableemail": false,
- "emailoverride": "",
- "keepnr": 3,
- "inputs": {
- "nixpkgs": { "type": "git", "value": "https://github.com/NixOS/nixpkgs-channels.git nixos-unstable", "emailresponsible": false }
- }
-}