nixpkgs/pkgs/development/tools/database/sqlcheck/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
600 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake }:
2018-11-28 07:36:51 +03:00
stdenv.mkDerivation rec {
pname = "sqlcheck";
2022-03-21 21:54:02 +03:00
version = "1.3";
2018-11-28 07:36:51 +03:00
src = fetchFromGitHub {
owner = "jarulraj";
repo = "sqlcheck";
rev = "v${version}";
2022-03-21 21:54:02 +03:00
sha256 = "sha256-rGqCtEO2K+OT44nYU93mF1bJ07id+ixPkRSC8DcO6rY=";
2018-11-28 07:36:51 +03:00
fetchSubmodules = true;
};
nativeBuildInputs = [ cmake ];
doCheck = true;
meta = with lib; {
2018-11-28 07:36:51 +03:00
inherit (src.meta) homepage;
description = "Automatically identify anti-patterns in SQL queries";
license = licenses.asl20;
platforms = platforms.all;
maintainers = [ maintainers.marsam ];
};
}