From 96700c952236f92b4597d248748f4e7579f951df Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 17 May 2020 20:24:18 +0100 Subject: chore(3p/nix): Remove old build derivations Removes the autotools-based build derivations, in favour of using a simpler build that just wraps Meson. --- third_party/nix/shell.nix | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 third_party/nix/shell.nix (limited to 'third_party/nix/shell.nix') 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 {}).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 - ''; -} -- cgit 1.4.1