sqlcheck: init at 1.2

This commit is contained in:
Mario Rodas 2018-11-27 23:36:51 -05:00
parent a5a239ca2d
commit 3ba355b0ba
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
name = "sqlcheck-${version}";
version = "1.2";
src = fetchFromGitHub {
owner = "jarulraj";
repo = "sqlcheck";
rev = "v${version}";
sha256 = "0v8idyhwhbphxzmh03lih3wd9gdq317zn7wsf01infih7b6l0k69";
fetchSubmodules = true;
};
nativeBuildInputs = [ cmake ];
doCheck = true;
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Automatically identify anti-patterns in SQL queries";
license = licenses.asl20;
platforms = platforms.all;
maintainers = [ maintainers.marsam ];
};
}

View file

@ -8977,6 +8977,8 @@ with pkgs;
spoofer-gui = callPackage ../tools/networking/spoofer { withGUI = true; };
sqlcheck = callPackage ../development/tools/database/sqlcheck { };
sqlitebrowser = libsForQt5.callPackage ../development/tools/database/sqlitebrowser { };
sqlite-web = callPackage ../development/tools/database/sqlite-web { };