about summary refs log tree commit diff
path: root/pkgs/development/tools/squawk/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/squawk/default.nix')
-rw-r--r--pkgs/development/tools/squawk/default.nix54
1 files changed, 0 insertions, 54 deletions
diff --git a/pkgs/development/tools/squawk/default.nix b/pkgs/development/tools/squawk/default.nix
deleted file mode 100644
index 5270523caf6e..000000000000
--- a/pkgs/development/tools/squawk/default.nix
+++ /dev/null
@@ -1,54 +0,0 @@
-{ darwin
-, fetchFromGitHub
-, lib
-, libiconv
-, libpg_query
-, openssl
-, pkg-config
-, rustPlatform
-, stdenv
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "squawk";
-  version = "1.0.0";
-
-  src = fetchFromGitHub {
-    owner = "sbdchd";
-    repo = pname;
-    rev = "v${version}";
-    hash = "sha256-Uc357UspC2O/IxRRTy04jubzhKDRnIAN2CoHvbrGbHg=";
-  };
-
-  cargoHash = "sha256-G0t3wvcp1Dm0ZCDnzTVf1XJ2Dtr0LyrKM1Vvso0IoaA=";
-
-  nativeBuildInputs = [
-    pkg-config
-    rustPlatform.bindgenHook
-  ];
-
-  buildInputs = lib.optionals (!stdenv.isDarwin) [
-    libiconv
-    openssl
-  ] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
-    CoreFoundation
-    Security
-  ]);
-
-  OPENSSL_NO_VENDOR = 1;
-
-  LIBPG_QUERY_PATH = libpg_query;
-
-  checkFlags = [
-    # depends on the PostgreSQL version
-    "--skip=parse::tests::test_parse_sql_query_json"
-  ];
-
-  meta = with lib; {
-    description = "Linter for PostgreSQL, focused on migrations";
-    homepage = "https://squawkhq.com/";
-    changelog = "https://github.com/sbdchd/squawk/blob/v${version}/CHANGELOG.md";
-    license = licenses.gpl3Only;
-    maintainers = with lib.maintainers; [ andrewsmith ];
-  };
-}