diff options
author | Vincent Ambo <tazjin@google.com> | 2020-05-17T19·24+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-05-17T19·24+0100 |
commit | 96700c952236f92b4597d248748f4e7579f951df (patch) | |
tree | 140365e715463ce6983234534a60042e9264178b /third_party/nix/shell.nix | |
parent | 40395860c721165f0cc36dfd15b06bc1ea8590bc (diff) |
chore(3p/nix): Remove old build derivations r/742
Removes the autotools-based build derivations, in favour of using a simpler build that just wraps Meson.
Diffstat (limited to 'third_party/nix/shell.nix')
-rw-r--r-- | third_party/nix/shell.nix | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/third_party/nix/shell.nix b/third_party/nix/shell.nix deleted file mode 100644 index e163fccf9c77..000000000000 --- a/third_party/nix/shell.nix +++ /dev/null @@ -1,24 +0,0 @@ -let pkgs = (import <nixpkgs> {}).third_party; -in with pkgs; - -with import ./release-common.nix { inherit pkgs; }; - -clangStdenv.mkDerivation { - name = "nix"; - - buildInputs = buildDeps ++ propagatedDeps ++ tarballDeps ++ perlDeps; - - inherit configureFlags; - - enableParallelBuilding = true; - - installFlags = "sysconfdir=$(out)/etc"; - - shellHook = - '' - export prefix=$(pwd)/inst - configureFlags+=" --prefix=$prefix" - PKG_CONFIG_PATH=$prefix/lib/pkgconfig:$PKG_CONFIG_PATH - PATH=$prefix/bin:$PATH - ''; -} |