nixpkgs/pkgs/development/tools/sqlint/default.nix

19 lines
468 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2018-06-12 21:00:23 +00:00
bundlerApp {
2018-06-12 21:00:23 +00:00
pname = "sqlint";
gemdir = ./.;
exes = [ "sqlint" ];
passthru.updateScript = bundlerUpdateScript "sqlint";
2018-06-12 21:00:23 +00:00
meta = with lib; {
description = "Simple SQL linter";
homepage = "https://github.com/purcell/sqlint";
2018-06-12 21:00:23 +00:00
license = licenses.mit;
maintainers = with maintainers; [ ariutta nicknovitski purcell ];
2018-06-12 21:00:23 +00:00
platforms = with platforms; [ "x86_64-linux" "x86_64-darwin" ];
};
}