Fix shell.nix

This commit is contained in:
John Ericson 2020-06-29 21:36:09 +00:00
parent 24da034bc3
commit 696bb134c1

View file

@ -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 (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 { (if useClang then clangStdenv else stdenv).mkDerivation {
name = "nix"; name = "nix";