3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #179749 from lf-/libpg-query-allow-more-platforms

libpg_query: not just for x86_64!
This commit is contained in:
Mario Rodas 2022-07-01 00:12:56 -05:00 committed by GitHub
commit fecbf99480
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
description = "C library for accessing the PostgreSQL parser outside of the server environment";
changelog = "https://github.com/pganalyze/libpg_query/raw/${version}/CHANGELOG.md";
license = licenses.bsd3;
platforms = platforms.x86_64;
platforms = platforms.unix;
maintainers = [ maintainers.marsam ];
};
}