summary refs log tree commit diff
path: root/pkgs/top-level/release.nix
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@Yahoo.com>2017-01-14 14:25:01 -0500
committerJohn Ericson <Ericson2314@Yahoo.com>2017-01-14 14:25:56 -0500
commit427dbcb1d71873573b28d0963149d751345faf3b (patch)
tree7e439b877062dfdb8c25a8a3fb1bf3458af40ae6 /pkgs/top-level/release.nix
parentb518598a402a294d0ffdd84a92d324440265777d (diff)
downloadnixpkgs-427dbcb1d71873573b28d0963149d751345faf3b.tar
nixpkgs-427dbcb1d71873573b28d0963149d751345faf3b.tar.gz
nixpkgs-427dbcb1d71873573b28d0963149d751345faf3b.tar.bz2
nixpkgs-427dbcb1d71873573b28d0963149d751345faf3b.tar.lz
nixpkgs-427dbcb1d71873573b28d0963149d751345faf3b.tar.xz
nixpkgs-427dbcb1d71873573b28d0963149d751345faf3b.tar.zst
nixpkgs-427dbcb1d71873573b28d0963149d751345faf3b.zip
top-level: Add more options to release-cross.nix, normalize param comments
Diffstat (limited to 'pkgs/top-level/release.nix')
-rw-r--r--pkgs/top-level/release.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix
index d3fb4e646c3..2052957edd6 100644
--- a/pkgs/top-level/release.nix
+++ b/pkgs/top-level/release.nix
@@ -11,10 +11,10 @@
 
 { 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" ]
-# Strip most of attributes when evaluating to spare memory usage
-, scrubJobs ? true
+, # 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
 }:
 
 with import ./release-lib.nix { inherit supportedSystems scrubJobs; };