release.nix: tiny improvements on top of #18059

This commit is contained in:
Domen Kožar 2016-08-28 18:18:44 +02:00
parent cb9737fe43
commit 5793a14c36
2 changed files with 11 additions and 8 deletions

View file

@ -22,6 +22,7 @@ rec {
meta = {
homepage = http://www.program-transformation.org/Sdf/SdfBundle;
meta = "Tools for the SDF2 Syntax Definition Formalism, including the `pgen' parser generator and `sglr' parser";
platforms = stdenv.lib.platforms.linux;
};
} // ( if stdenv.system == "i686-cygwin" then { CFLAGS = "-O2 -Wl,--stack=0x2300000"; } else {} ) ) ;
@ -39,6 +40,7 @@ rec {
meta = {
homepage = http://strategoxt.org/;
meta = "A language and toolset for program transformation";
platforms = stdenv.lib.platforms.linux;
};
};
@ -55,6 +57,7 @@ rec {
meta = {
homepage = http://strategoxt.org/;
meta = "A language and toolset for program transformation";
platforms = stdenv.lib.platforms.linux;
broken = true;
};
};
@ -76,6 +79,7 @@ rec {
meta = {
homepage = http://strategoxt.org/Stratego/JavaFront;
meta = "Tools for generating or transforming Java code";
platforms = stdenv.lib.platforms.linux;
};
} // ( if stdenv.system == "i686-cygwin" then { CFLAGS = "-O2"; } else {} ) ) ;
@ -105,6 +109,7 @@ rec {
meta = {
homepage = http://strategoxt.org/Stratego/TheDryad;
meta = "A collection of tools for developing transformation systems for Java source and bytecode";
platforms = stdenv.lib.platforms.linux;
broken = true;
};
};

View file

@ -11,8 +11,9 @@
{ nixpkgs ? { outPath = (import ../.. {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; }
, officialRelease ? false
, # The platforms for which we build Nixpkgs.
supportedSystems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" ]
# The platforms for which we build Nixpkgs.
, supportedSystems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" ]
# Strip most of attributes when evaluating to spare memory usage
, scrubJobs ? true
}:
@ -84,18 +85,15 @@ let
};
} // (mapTestOn ((packagePlatforms pkgs) // rec {
#emacs24PackagesNg = packagePlatforms pkgs.emacs24PackagesNg;
haskell.compiler = packagePlatforms pkgs.haskell.compiler;
haskellPackages = packagePlatforms pkgs.haskellPackages;
# Language packages disabled in https://github.com/NixOS/nixpkgs/commit/ccd1029f58a3bb9eca32d81bf3f33cb4be25cc66
#emacs24PackagesNg = packagePlatforms pkgs.emacs24PackagesNg;
#rPackages = packagePlatforms pkgs.rPackages;
ocamlPackages = { };
perlPackages = { };
pythonPackages = {
pandas = unix;
scikitlearn = unix;