Set meta.hydraPlatforms instead of meta.platforms for some packages

wip/yesman
Eelco Dolstra 11 years ago
parent a2cbc77e4f
commit c88055e1a2
  1. 2
      pkgs/applications/audio/mopidy/default.nix
  2. 2
      pkgs/applications/graphics/zgrviewer/default.nix
  3. 3
      pkgs/applications/science/logic/tptp/default.nix
  4. 3
      pkgs/data/fonts/andagii/default.nix
  5. 2
      pkgs/development/libraries/aqbanking/default.nix
  6. 2
      pkgs/development/libraries/haskell/accelerate-cuda/default.nix
  7. 2
      pkgs/development/libraries/haskell/accelerate-examples/default.nix
  8. 2
      pkgs/development/libraries/haskell/accelerate-fft/default.nix
  9. 2
      pkgs/development/libraries/haskell/cuda/default.nix
  10. 2
      pkgs/development/libraries/haskell/cufft/default.nix
  11. 3
      pkgs/games/alienarena/default.nix
  12. 3
      pkgs/games/dwarf-therapist/default.nix
  13. 3
      pkgs/games/flightgear/default.nix
  14. 3
      pkgs/games/naev/default.nix
  15. 3
      pkgs/games/oilrush/default.nix
  16. 2
      pkgs/games/sauerbraten/default.nix
  17. 3
      pkgs/games/speed-dreams/default.nix
  18. 3
      pkgs/games/torcs/default.nix
  19. 3
      pkgs/games/ufoai/default.nix
  20. 3
      pkgs/games/unvanquished/default.nix
  21. 3
      pkgs/games/urbanterror/default.nix
  22. 3
      pkgs/games/vdrift/default.nix
  23. 3
      pkgs/games/widelands/default.nix
  24. 3
      pkgs/games/xonotic/default.nix
  25. 3
      pkgs/os-specific/linux/ati-drivers/default.nix
  26. 2
      pkgs/os-specific/linux/kernel/linux-rpi-3.6.nix
  27. 3
      pkgs/servers/http/joseki/default.nix
  28. 3
      pkgs/tools/graphics/welkin/default.nix
  29. 3
      pkgs/tools/system/fdisk/default.nix
  30. 2
      pkgs/tools/typesetting/tex/texlive/cm-super.nix
  31. 2
      pkgs/tools/typesetting/tex/texlive/extra.nix
  32. 2
      pkgs/tools/typesetting/tex/texlive/moderncv.nix
  33. 2
      pkgs/tools/typesetting/tex/texlive/moderntimeline.nix
  34. 10
      pkgs/top-level/all-packages.nix

@ -39,6 +39,6 @@ pythonPackages.buildPythonPackage rec {
local hard drive.
'';
maintainers = [ stdenv.lib.maintainers.rickynils ];
platforms = [];
hydraPlatforms = [];
};
}

@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
'';
meta = {
# Quicker to unpack locally than load Hydra
platforms = [];
hydraPlatforms = [];
maintainers = with stdenv.lib.maintainers; [raskin];
license = with stdenv.lib.licenses; lgpl21Plus;
description = "GraphViz graph viewer/navigator";

@ -74,8 +74,7 @@ rec {
# A GiB of data. Installation is unpacking and editing a few files.
# No sense in letting Hydra build it.
# Also, it is unclear what is covered by "verbatim" - we will edit configs
platforms = with a.lib.platforms;
[];
hydraPlatforms = [];
license = "verbatim-redistribution";
};
passthru = {

@ -43,8 +43,7 @@ rec {
[
raskin
];
platforms = with a.lib.platforms;
[];
hydraPlatforms = [];
# There are multiple claims that the font is GPL,
# so I include the package; but I cannot find the
# original source, so use it on your own risk

@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
meta = {
maintainers = [ stdenv.lib.maintainers.urkud ];
# Tries to install gwenhywfar plugin, thus `make install` fails
platforms = [];
hydraPlatforms = [];
};
}

@ -17,7 +17,7 @@ cabal.mkDerivation (self: {
homepage = "https://github.com/AccelerateHS/accelerate-cuda/";
description = "Accelerate backend for NVIDIA GPUs";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.none;
hydraPlatforms = [];
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})

@ -23,7 +23,7 @@ cabal.mkDerivation (self: {
homepage = "https://github.com/AccelerateHS/accelerate-examples";
description = "Examples using the Accelerate library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.none;
hydraPlatforms = [];
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})

@ -9,6 +9,6 @@ cabal.mkDerivation (self: {
homepage = "https://github.com/AccelerateHS/accelerate-fft";
description = "FFT using the Accelerate library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.none;
hydraPlatforms = [];
};
})

@ -33,7 +33,7 @@ cabal.mkDerivation (self: {
meta = {
description = "FFI binding to the CUDA interface for programming NVIDIA GPUs";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.none;
hydraPlatforms = [];
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})

@ -10,6 +10,6 @@ cabal.mkDerivation (self: {
homepage = "http://github.com/robeverest/cufft";
description = "Haskell bindings for the CUFFT library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.none;
hydraPlatforms = [];
};
})

@ -33,6 +33,7 @@ stdenv.mkDerivation rec {
# Engine is under GPLv2, everything else is under
license = [ "unfree-redistributable" ];
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
#platforms = with stdenv.lib.platforms; linux;
platforms = stdenv.lib.platforms.linux;
hydraPlatforms = [];
};
}

@ -54,7 +54,8 @@ stdenv.mkDerivation rec {
description = "Tool to manage dwarves in in a running game of Dwarf Fortress";
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
license = "MIT";
platforms = stdenv.lib.platforms.none;
platforms = stdenv.lib.platforms.linux;
hydraPlatforms = [];
homepage = https://code.google.com/r/splintermind-attributes/;
};
}

@ -57,7 +57,8 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Flight simulator";
maintainers = with maintainers; [ raskin ];
#platforms = platforms.linux; # disabled from hydra because it's so big
platforms = platforms.linux;
hydraPlatforms = []; # disabled from hydra because it's so big
license = licenses.gpl2;
};
}

@ -36,6 +36,7 @@ stdenv.mkDerivation {
homepage = http://www.naev.org;
license = "GPLv3+";
maintainers = with stdenv.lib.maintainers; [viric];
#platforms = stdenv.lib.platforms.linux;
platforms = stdenv.lib.platforms.linux;
hydraPlatforms = [];
};
}

@ -69,7 +69,8 @@ stdenv.mkDerivation {
homepage = http://oilrush-game.com/;
license = "unfree";
#maintainers = with stdenv.lib.maintainers; [ astsmtl ];
#platforms = with stdenv.lib.platforms; linux;
platforms = stdenv.lib.platforms.linux;
hydraPlatforms = [];
};
}

@ -66,7 +66,7 @@ rec {
[
raskin
];
platforms = with a.lib.platforms;
hydraPlatforms =
# raskin: tested amd64-linux;
# not setting platforms because it is 0.5+ GiB of game data
[];

@ -30,6 +30,7 @@ stdenv.mkDerivation rec {
homepage = http://speed-dreams.sourceforge.net/;
license = "GPLv2+";
maintainers = with stdenv.lib.maintainers; [viric raskin];
#platforms = with stdenv.lib.platforms; linux;
platforms = stdenv.lib.platforms.linux;
hydraPlatforms = [];
};
}

@ -26,6 +26,7 @@ stdenv.mkDerivation rec {
homepage = http://torcs.sourceforge.net/;
license = "GPLv2+";
maintainers = with stdenv.lib.maintainers; [viric];
#platforms = with stdenv.lib.platforms; linux;
platforms = stdenv.lib.platforms.linux;
hydraPlatforms = [];
};
}

@ -30,6 +30,7 @@ stdenv.mkDerivation rec {
description = "A squad-based tactical strategy game in the tradition of X-Com";
license = "GPLv2+";
maintainers = with stdenv.lib.maintainers; [viric];
#platforms = with stdenv.lib.platforms; linux;
platforms = stdenv.lib.platforms.linux;
hydraPlatforms = [];
};
}

@ -62,7 +62,8 @@ stdenv.mkDerivation rec {
homepage = http://unvanquished.net;
#license = "unknown";
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
platforms = stdenv.lib.platforms.linux;
# This package can take a lot of disk space, so unavailable from channel
#platforms = with stdenv.lib.platforms; linux;
hydraPlatforms = [];
};
}

@ -59,6 +59,7 @@ stdenv.mkDerivation rec {
homepage = http://www.urbanterror.net;
license = [ "unfree-redistributable" ];
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
#platforms = stdenv.lib.platforms.linux;
platforms = stdenv.lib.platforms.linux;
hydraPlatforms = [];
};
}

@ -31,6 +31,7 @@ stdenv.mkDerivation rec {
homepage = http://vdrift.net/;
license = "GPLv2+";
maintainers = with stdenv.lib.maintainers; [viric];
#platforms = with stdenv.lib.platforms; linux;
platforms = stdenv.lib.platforms.linux;
hydraPlatforms = [];
};
}

@ -64,7 +64,8 @@ rec {
raskin
jcumming
];
#platforms = a.lib.platforms.linux;
platforms = a.lib.platforms.linux;
hydraPlatforms = [];
license = a.lib.licenses.gpl2Plus;
};
passthru = {

@ -56,6 +56,7 @@ stdenv.mkDerivation rec {
homepage = http://www.xonotic.org;
license = with stdenv.lib.licenses; gpl2Plus;
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
#platforms = with stdenv.lib.platforms; linux;
platforms = stdenv.lib.platforms.linux;
hydraPlatforms = [];
};
}

@ -68,7 +68,8 @@ stdenv.mkDerivation rec {
homepage = http://support.amd.com/us/gpudownload/Pages/index.aspx;
license = "unfree";
maintainers = [stdenv.lib.maintainers.marcweber];
#platforms = [ "x86_64-linux" ];
platforms = [ "x86_64-linux" ];
hydraPlatforms = [];
};
# moved assertions here because the name is evaluated when the NixOS manual is generated

@ -15,5 +15,5 @@ in import ./generic.nix (args // rec {
features.iwlwifi = true;
extraMeta.platforms = [];
extraMeta.hydraPlatforms = [];
})

@ -105,8 +105,7 @@ rec {
[
raskin
];
platforms = with a.lib.platforms;
[]; # Builder is just unpacking/mixing what is needed
hydraPlatforms = []; # Builder is just unpacking/mixing what is needed
license = "free"; # mix of packages under different licenses
homepage = "http://openjena.org/";
};

@ -46,8 +46,7 @@ rec {
[
raskin
];
platforms = with a.lib.platforms;
[];
hydraPlatforms = [];
license = "free-noncopyleft";
};
passthru = {

@ -24,7 +24,6 @@ stdenv.mkDerivation rec {
homepage = http://www.gnu.org/software/fdisk/;
maintainers = [ ];
#platforms = stdenv.lib.platforms.linux; # was failing for long without anyone complaining
platforms = stdenv.lib.platforms.linux;
};
}

@ -30,6 +30,6 @@ rec {
maintainers = [ args.lib.maintainers.raskin ];
# Actually, arch-independent..
platforms = [] ;
hydraPlatforms = [];
};
}

@ -19,6 +19,6 @@ rec {
maintainers = [ args.lib.maintainers.raskin ];
# Actually, arch-independent..
platforms = [] ;
hydraPlatforms = [];
};
}

@ -21,6 +21,6 @@ rec {
maintainers = [ args.lib.maintainers.simons ];
# Actually, arch-independent..
platforms = [] ;
hydraPlatforms = [];
};
}

@ -24,6 +24,6 @@ rec {
maintainers = [ args.lib.maintainers.simons ];
# Actually, arch-independent..
platforms = [] ;
hydraPlatforms = [];
};
}

@ -2290,7 +2290,7 @@ let
cross = assert crossSystem != null; crossSystem;
};
gcc44_realCross = lib.addMetaAttrs { platforms = []; }
gcc44_realCross = lib.addMetaAttrs { hydraPlatforms = []; }
(makeOverridable (import ../development/compilers/gcc/4.4) {
inherit stdenv fetchurl texinfo gmp mpfr /* ppl cloogppl */ noSysDirs
gettext which;
@ -2339,7 +2339,7 @@ let
gcc47 = gcc47_real;
gcc45_realCross = lib.addMetaAttrs { platforms = []; }
gcc45_realCross = lib.addMetaAttrs { hydraPlatforms = []; }
(makeOverridable (import ../development/compilers/gcc/4.5) {
inherit fetchurl stdenv texinfo gmp mpfr mpc libelf zlib
ppl cloogppl gettext which noSysDirs;
@ -2351,7 +2351,7 @@ let
cross = assert crossSystem != null; crossSystem;
});
gcc46_realCross = lib.addMetaAttrs { platforms = []; }
gcc46_realCross = lib.addMetaAttrs { hydraPlatforms = []; }
(makeOverridable (import ../development/compilers/gcc/4.6) {
inherit fetchurl stdenv texinfo gmp mpfr mpc libelf zlib
cloog ppl gettext which noSysDirs;
@ -2363,7 +2363,7 @@ let
cross = assert crossSystem != null; crossSystem;
});
gcc47_realCross = lib.addMetaAttrs { platforms = []; }
gcc47_realCross = lib.addMetaAttrs { hydraPlatforms = []; }
(makeOverridable (import ../development/compilers/gcc/4.7) {
inherit fetchurl stdenv texinfo gmp mpfr mpc libelf zlib
cloog ppl gettext which noSysDirs;
@ -2384,7 +2384,7 @@ let
if isMingw then windows.mingw_headers1 else null;
in
wrapGCCCross {
gcc = forceNativeDrv (lib.addMetaAttrs { platforms = []; } (
gcc = forceNativeDrv (lib.addMetaAttrs { hydraPlatforms = []; } (
gcc_realCross.override {
crossStageStatic = true;
langCC = false;

Loading…
Cancel
Save