nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 bundlerApp,
4 bundlerUpdateScript,
5}:
6
7bundlerApp {
8 pname = "sqlint";
9 gemdir = ./.;
10
11 exes = [ "sqlint" ];
12
13 passthru.updateScript = bundlerUpdateScript "sqlint";
14
15 meta = {
16 description = "Simple SQL linter";
17 homepage = "https://github.com/purcell/sqlint";
18 license = lib.licenses.mit;
19 maintainers = with lib.maintainers; [
20 ariutta
21 nicknovitski
22 purcell
23 ];
24 platforms = lib.platforms.unix;
25 };
26}