From f84f17bdb0c10a90a87f04fcd4ded65680426f44 Mon Sep 17 00:00:00 2001 From: Anton-Latukha Date: Thu, 18 Jun 2020 01:08:33 +0300 Subject: [PATCH] default.nix: clean-up no longer relevant commented-out code buildInputs populated automatically. Environment overloads we can do any time, no need to keep trivial code commented. There is no AWS S3 use. If we would need we would write new deployment implementation outside of `default.nix` using actual NixOps. --- default.nix | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/default.nix b/default.nix index e1e1c83..e0552c6 100644 --- a/default.nix +++ b/default.nix @@ -77,35 +77,6 @@ # src = if builtins.pathExists ./data/nix/.version # then data/nix # else throw "data/nix doesn't seem to contain the nix source. You may want to run git submodule update --init."; - - # enableParallelBuilding = true; - - # configureFlags = - # [ "--disable-doc-gen" - # "--enable-gc" - # ]; - - # buildInputs = - # [ bison - # flex - # autoconf-archive - # autoreconfHook - # curl - # bzip2 xz brotli editline - # openssl pkgconfig sqlite boehmgc - # boost - # git - # mercurial - # ] - # ++ lib.optionals stdenv.isLinux [libseccomp utillinuxMinimal] - # ++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium - # ++ lib.optional (stdenv.isLinux || stdenv.isDarwin) - # (aws-sdk-cpp.override { - # apis = ["s3" "transfer"]; - # customMemoryManagement = false; - # }); - - # outputs = builtins.filter (s: s != "doc" && s != "man" ) attrs.outputs; # }); # }; }