biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / squawk / default.nix
blob1813ac21659ab838e296fa10d86668c2faeba94f
1 { darwin
2 , fetchFromGitHub
3 , lib
4 , libiconv
5 , libpg_query
6 , openssl
7 , pkg-config
8 , rustPlatform
9 , stdenv
12 rustPlatform.buildRustPackage rec {
13   pname = "squawk";
14   version = "0.28.0";
16   src = fetchFromGitHub {
17     owner = "sbdchd";
18     repo = pname;
19     rev = "v${version}";
20     hash = "sha256-RnY41G0ombqJewv+kxvg8AwQeRaVb+frZjmU/Cd28Jo=";
21   };
23   cargoHash = "sha256-YR2ZSwrCkX8eyHTj1Dtk9f01/y9fDtknouige68kS8I=";
25   nativeBuildInputs = [
26     pkg-config
27     rustPlatform.bindgenHook
28   ];
30   buildInputs = lib.optionals (!stdenv.isDarwin) [
31     libiconv
32     openssl
33   ] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
34     CoreFoundation
35     Security
36   ]);
38   OPENSSL_NO_VENDOR = 1;
40   LIBPG_QUERY_PATH = libpg_query;
42   checkFlags = [
43     # depends on the PostgreSQL version
44     "--skip=parse::tests::test_parse_sql_query_json"
45   ];
47   meta = with lib; {
48     description = "Linter for PostgreSQL, focused on migrations";
49     homepage = "https://squawkhq.com/";
50     changelog = "https://github.com/sbdchd/squawk/blob/v${version}/CHANGELOG.md";
51     license = licenses.gpl3Only;
52     maintainers = with lib.maintainers; [ andrewsmith marsam ];
53   };