From c3fcd5ecb777099e3f5a9c26da7503afd0cee9d2 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Thu, 18 Jun 2015 11:37:06 -0500 Subject: [PATCH] nixpkgs: Remove bunk 'infer' expression This was accidentally committed because I'm a goof - see 1ee742b0ef2904788e1775d73de42c00492e8c4f. Thanks to ftrvxmtrx on IRC for spotting. Signed-off-by: Austin Seipp --- .../tools/analysis/infer/default.nix | 33 ------------------- pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 35 deletions(-) delete mode 100644 pkgs/development/tools/analysis/infer/default.nix diff --git a/pkgs/development/tools/analysis/infer/default.nix b/pkgs/development/tools/analysis/infer/default.nix deleted file mode 100644 index 35dbd08a870..00000000000 --- a/pkgs/development/tools/analysis/infer/default.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ stdenv, fetchurl, python }: - -stdenv.mkDerivation rec { - name = "infer-${version}"; - version = "0.1.0"; - - src = fetchurl { - url = "https://github.com/facebook/infer/releases/download/v${version}/infer-linux64-v${version}.tar.xz"; - sha256 = "1kppiayzqwmm13aq8x1jxd3j4jywh3h37jxrgyipz8li1ddpdq3m"; - }; - - buildInputs = [ python ]; - buildPhase = "true"; - installPhase = '' - mkdir -p $out/libexec $out/bin; - cp -R facebook-clang-plugin $out/libexec - cp -R infer $out/libexec - for x in `ls $out/libexec/infer/infer/bin`; do - ln -s $out/libexec/infer/infer/bin/$x $out/bin/$x; - done - ''; - fixupPhase = '' - patchShebangs $out - ''; - - meta = { - description = "Scalable static analyzer for Java, C and Objective-C"; - homepage = http://fbinfer.com; - license = stdenv.lib.licenses.bsd3; - maintainers = with stdenv.lib.maintainers; [ thoughtpolice ]; - platforms = [ "x86_64-linux" ]; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index fd1633ebe73..1e2dd6ad220 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5313,8 +5313,6 @@ let csslint = callPackage ../development/web/csslint { }; - infer = callPackage ../development/tools/analysis/infer { }; - libcxx = llvmPackages.libcxx; libcxxabi = llvmPackages.libcxxabi;