about summary refs log tree commit diff
path: root/pkgs/shells/dash
AgeCommit message (Collapse)AuthorFilesLines
2022-12-28pkgsStatic.dash: fix buildKiskae1-1/+1
pkg-config wrapper does not provide a named binary.
2022-12-13pkgStatic.dash: fix buildKiskae1-1/+6
`libedit` declares a dependency on `libncurses`, but since dash doesn't use pkg-config it doesn't register the transitive dependencies.
2022-05-25dash: 0.5.11.4 -> 0.5.11.5Mario Rodas1-2/+2
2022-05-06pkgs/shells: enable strictDepsArtturin1-0/+1
2022-01-17dash: add testChristian Kampka1-0/+10
2021-09-14dash: fix on aarch64-darwinEmily1-0/+9
2021-09-14dash: 0.5.11.2 -> 0.5.11.4Emily2-47/+2
The readdir64/dirent64 patch was obsoleted by an upstream commit.
2021-09-14dash: use fetchpatchEmily1-3/+10
2021-04-04dash: enable parallel buildingAlyssa Ross1-0/+2
2021-04-04dash: add libedit supportAlyssa Ross1-1/+4
This allows running set -o emacs to get line editing in dash, which is a major usability improvement. Closure size before: 31.6M after: 35.3M
2021-04-04dash: move confusing commentAlyssa Ross1-2/+5
When the noexec patch was added, this comment should have been moved to make it clear it referred to the Darwin patch, which was previously the only one.
2021-01-15pkgs/shells: stdenv.lib -> libBen Siraphob1-2/+2
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch1-2/+2
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2020-11-23dash: add patch to prevent code execution when noexec is setMartin Weinelt1-3/+11
Dashs noexec flag `-n` did not work as documented, which could result in code being inadvertently executed.
2020-09-22dash: 0.5.11.1 -> 0.5.11.2R. RyanTM1-2/+2
2020-09-02dash: Fix cross buildJohn Ericson1-3/+4
2020-07-21dash: fix compilation on darwinAdrian Gierakowski2-1/+46
it has been broken since: https://github.com/NixOS/nixpkgs/commit/adbace3c212a64cfa151590f907965aa3eaabf8b
2020-07-08dash: 0.5.11 -> 0.5.11.1R. RyanTM1-2/+2
2020-06-09dash: 0.5.10.2 -> 0.5.11R. RyanTM1-2/+2
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2018-11-15dash: add licensesMarkus Kowalewski1-2/+3
2018-05-21dash: 0.5.10.1 -> 0.5.10.2R. RyanTM1-2/+2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/dash/versions. These checks were done: - built on NixOS - /nix/store/shdckmx580jc9c283dxlnl47gfj5lykc-dash-0.5.10.2/bin/dash passed the binary check. - 1 of 1 passed binary check by having a zero exit code. - 0 of 1 passed binary check by having the new version present in output. - directory tree listing: https://gist.github.com/f099316518721d966018e207da80b59f - du listing: https://gist.github.com/943c0fa7050582ee37c58883869edf64
2018-05-17dash: 0.5.10 -> 0.5.10.1 (#40677)R. RyanTM1-2/+2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/dash/versions. These checks were done: - built on NixOS - /nix/store/xdfhswm4pr989ad5582dphj02nlhd09g-dash-0.5.10.1/bin/dash passed the binary check. - 1 of 1 passed binary check by having a zero exit code. - 0 of 1 passed binary check by having the new version present in output. - directory tree listing: https://gist.github.com/c7533f80b4151e29fb67f31acbea016b - du listing: https://gist.github.com/455f25b553fefbc281441c80772198d1
2018-05-07dash: 0.5.9.1 -> 0.5.10R. RyanTM1-2/+2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/dash/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - directory tree listing: https://gist.github.com/ac71c74097484baeb4301fc8048b372d
2017-07-13dash: 0.5.8 -> 0.5.9.1Joachim Fasting1-2/+2
Contains mostly fixes as far as I can tell.
2016-08-03Merge remote-tracking branch 'upstream/master' into hardened-stdenvRobin Gloster1-1/+1
2016-08-03Re-enable bunch of packages on DarwinTuomas Tynkkynen1-1/+1
Prior to 1bf5ded1933b18af9a95dc263063756ed9d383ba these contained `hydraPlatforms = platforms.linux`, which was apparently misleading.
2016-08-02treewide: Lots of meta.hydraPlatforms -> meta.platformsTuomas Tynkkynen1-1/+1
In all of these files, there is no meta.platforms but only meta.hydraPlatforms, which doesn't seem to have any purpose except being inconsistent.
2016-07-15Merge remote-tracking branch 'upstream/master' into hardened-stdenvRobin Gloster1-0/+4
2016-06-12dash: add shellPath passthruzimbatm1-0/+4
2016-03-05Use general hardening flag toggle listsFranz Pletz1-1/+1
The following parameters are now available: * hardeningDisable To disable specific hardening flags * hardeningEnable To enable specific hardening flags Only the cc-wrapper supports this right now, but these may be reused by other wrappers, builders or setup hooks. cc-wrapper supports the following flags: * fortify * stackprotector * pie (disabled by default) * pic * strictoverflow * format * relro * bindnow
2016-01-30switch hardening flagsRobin Gloster1-1/+1
2016-01-30Use a hardened stdenv by defaultFranz Pletz1-0/+2
2014-09-30dash: update from 0.5.7 to 0.5.8Mateusz Kowalczyk1-2/+2
2013-12-21dash: enable Hydra builds on LinuxPeter Simons1-2/+3
2013-12-18dash: update from 0.5.6 to 0.5.7Nixpkgs Monitor1-2/+2
2010-06-01* Added dash.Eelco Dolstra1-0/+15
svn path=/nixpkgs/trunk/; revision=22088