File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 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" ;
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" ''
You can’t perform that action at this time.
0 commit comments