Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6bc8b5bbd91e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4c9d321c3f27
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Nov 28, 2018

  1. sqlcheck: init at 1.2

    marsam committed Nov 28, 2018
    Copy the full SHA
    3ba355b View commit details
  2. Merge pull request #51164 from marsam/feature/init-sqlcheck

    sqlcheck: init at 1.2
    c0bw3b authored Nov 28, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4c9d321 View commit details
Showing with 28 additions and 0 deletions.
  1. +26 −0 pkgs/development/tools/database/sqlcheck/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
26 changes: 26 additions & 0 deletions pkgs/development/tools/database/sqlcheck/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -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 { };