1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #51164 from marsam/feature/init-sqlcheck

sqlcheck: init at 1.2
This commit is contained in:
Renaud 2018-11-28 17:35:39 +01:00 committed by GitHub
commit 4c9d321c3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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 { };