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

View File

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