dde94e3d83
pg_query 2.0.2 apparently has working ARM support. This change also re-locks sqlint to use the newer version, and generalises the platform spec to avoid being unnecessarily restrictive. As before, other packages which refer to pg_query are unaffected, because they pin an older version of pg_query which is handled separately in the gem-config expressions. Follow-up to #116785
19 lines
432 B
Nix
19 lines
432 B
Nix
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
bundlerApp {
|
|
pname = "sqlint";
|
|
gemdir = ./.;
|
|
|
|
exes = [ "sqlint" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "sqlint";
|
|
|
|
meta = with lib; {
|
|
description = "Simple SQL linter";
|
|
homepage = "https://github.com/purcell/sqlint";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ariutta nicknovitski purcell ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|