Skip to content

Commit d8e2d4a

Browse files
committed
*: nix fmt
1 parent 2408a85 commit d8e2d4a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

2configs/services/radio/default.nix

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ let
1414
# dash 0.5.13 has a regression where `read` builtin discards input when stdin is a socket
1515
# This breaks htgen which uses tcpserver. Pin htgen's dash to 0.5.12 until upstream fixes it.
1616
# See: https://git.kernel.org/pub/scm/utils/dash/dash.git/commit/?id=1d072e9c3292281a7eee54c41fec117ff22723e5
17-
dash-0_5_12 = pkgs.dash.overrideAttrs (old: rec {
17+
dash-0_5_12 = pkgs.dash.overrideAttrs (_old: rec {
1818
version = "0.5.12";
1919
src = pkgs.fetchurl {
2020
url = "http://gondor.apana.org.au/~herbert/dash/files/dash-${version}.tar.gz";
@@ -23,7 +23,9 @@ let
2323
});
2424

2525
htgen-fixed = pkgs.htgen.override {
26-
pkgs = pkgs // { dash = dash-0_5_12; };
26+
pkgs = pkgs // {
27+
dash = dash-0_5_12;
28+
};
2729
};
2830

2931
skip_track = pkgs.writers.writeBashBin "skip_track" ''

0 commit comments

Comments
 (0)