summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2021-03-12 16:18:10 +0000
committerAlyssa Ross <hi@alyssa.is>2021-04-04 22:07:15 +0000
commit101cc9024b05f1ed80c7111da86825ff72ae4fa3 (patch)
tree1825597852318c13630259a4bb216650b18b0111 /pkgs/shells
parentf4ac75a56dcf0fdf045c04722ef6dcff7b12c2ee (diff)
downloadnixpkgs-101cc9024b05f1ed80c7111da86825ff72ae4fa3.tar
nixpkgs-101cc9024b05f1ed80c7111da86825ff72ae4fa3.tar.gz
nixpkgs-101cc9024b05f1ed80c7111da86825ff72ae4fa3.tar.bz2
nixpkgs-101cc9024b05f1ed80c7111da86825ff72ae4fa3.tar.lz
nixpkgs-101cc9024b05f1ed80c7111da86825ff72ae4fa3.tar.xz
nixpkgs-101cc9024b05f1ed80c7111da86825ff72ae4fa3.tar.zst
nixpkgs-101cc9024b05f1ed80c7111da86825ff72ae4fa3.zip
dash: enable parallel building
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/dash/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/shells/dash/default.nix b/pkgs/shells/dash/default.nix
index fedd22c0b4e..f044c41b73d 100644
--- a/pkgs/shells/dash/default.nix
+++ b/pkgs/shells/dash/default.nix
@@ -29,6 +29,8 @@ stdenv.mkDerivation rec {
 
   configureFlags = [ "--with-libedit" ];
 
+  enableParallelBuilding = true;
+
   meta = with lib; {
     homepage = "http://gondor.apana.org.au/~herbert/dash/";
     description = "A POSIX-compliant implementation of /bin/sh that aims to be as small as possible";