aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell.nix b/shell.nix
index 17aaa05ed..1addc06be 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,8 +1,8 @@
-{ useClang ? false }:
+{ useClang ? false, enableStatic ? false }:
with import (builtins.fetchTarball https://github.com/NixOS/nixpkgs/archive/nixos-20.03-small.tar.gz) {};
-with import ./release-common.nix { inherit pkgs; };
+with import ./release-common.nix { inherit pkgs enableStatic; };
(if useClang then clangStdenv else stdenv).mkDerivation {
name = "nix";