about summary refs log tree commit diff
path: root/overrides
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2014-10-29 11:22:38 +0100
committeraszlig <aszlig@redmoonstudios.org>2014-10-29 11:22:38 +0100
commitb2ccd16cefe25b68ca33cf240fca970387afb73e (patch)
tree6f1448989bfaedebdd46e4fd4227f938dbe163a4 /overrides
parentbca1576e6fd7ab313e48bedd58448822a245a424 (diff)
overrides: Remove obsolete chromium test override.
No longer needed, as I have a Hydra with a jobset doing exactly that
now.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'overrides')
-rw-r--r--overrides/default.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/overrides/default.nix b/overrides/default.nix
index 1528dc1f..8132b50c 100644
--- a/overrides/default.nix
+++ b/overrides/default.nix
@@ -115,36 +115,5 @@ let
         sha256 = "0r26friccy3dywrdm963cxkxjkgqwgr5r7j61zz8wc0md3n8ici3";
       };
     };
-
-    testChromiumBuild = let
-      buildChannels = [ "stable" "beta" "dev" ];
-      buildChromium = chan: everything.chromium.override {
-        channel = chan;
-        gnomeSupport = true;
-        gnomeKeyringSupport = true;
-        proprietaryCodecs = true;
-        cupsSupport = true;
-        pulseSupport = true;
-      };
-      mkTest = chan: everything.writeScript "test-chromium-${chan}.sh" ''
-        #!${everything.stdenv.shell}
-        if datadir="$(${everything.coreutils}/bin/mktemp -d)"; then
-          ${buildChromium chan}/bin/chromium --user-data-dir="$datadir"
-          rm -rf "$datadir"
-        fi
-      '';
-    in everything.stdenv.mkDerivation {
-      name = "test-chromium-build";
-
-      buildCommand = let
-        chanResults = flip map buildChannels (chan: ''
-          echo "Test script for ${chan}: ${mkTest chan}"
-        '');
-      in ''
-        echo "Builds finished, the following derivations have been built:"
-        ${concatStrings chanResults}
-        false
-      '';
-    };
   };
 in allPackages // drvOverrides // argOverrides