about summary refs log tree commit diff
path: root/pkgs/build-support/release/default.nix
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2020-03-21 20:15:09 -0400
committerBenjamin Hipple <bhipple@protonmail.com>2020-03-21 21:15:33 -0400
commit79d875ae7757af9a43248d89f746bc92947284dc (patch)
treeecf9ea9f4a1e8729d5fd31e44f9c56fd0d8f5759 /pkgs/build-support/release/default.nix
parentb0c75e811a6ad20f2f23f6392eae06a4d854c4dd (diff)
downloadnixlib-79d875ae7757af9a43248d89f746bc92947284dc.tar
nixlib-79d875ae7757af9a43248d89f746bc92947284dc.tar.gz
nixlib-79d875ae7757af9a43248d89f746bc92947284dc.tar.bz2
nixlib-79d875ae7757af9a43248d89f746bc92947284dc.tar.lz
nixlib-79d875ae7757af9a43248d89f746bc92947284dc.tar.xz
nixlib-79d875ae7757af9a43248d89f746bc92947284dc.tar.zst
nixlib-79d875ae7757af9a43248d89f746bc92947284dc.zip
releaseTools: no-op expression cleanup
No functional change, was just reading through these and cleaning/sanitizing
them a bit while I'm here.
Diffstat (limited to 'pkgs/build-support/release/default.nix')
-rw-r--r--pkgs/build-support/release/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/build-support/release/default.nix b/pkgs/build-support/release/default.nix
index 5e3eb751b81e..6b9aa9a8c4ad 100644
--- a/pkgs/build-support/release/default.nix
+++ b/pkgs/build-support/release/default.nix
@@ -1,4 +1,4 @@
-{pkgs}:
+{ pkgs }:
 
 with pkgs;
 
@@ -77,7 +77,7 @@ rec {
      its contituents. Channel jobs are a special type of jobs that are
      listed in the channel tab of Hydra and that can be suscribed.
      A tarball of the src attribute is distributed via the channel.
-     
+
      - constituents: a list of derivations on which the channel success depends.
      - name: the channel name that will be used in the hydra interface.
      - src: should point to the root folder of the nix-expressions used by the
@@ -88,7 +88,7 @@ rec {
          name = "my-channel";
          src = ./.;
        };
-     
+
   */
   channel =
     { name, src, constituents ? [], meta ? {}, isNixOS ? true, ... }@args: