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

19 lines
432 B
Nix
Raw Normal View History

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