Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 31 lines 773 B view raw
1{ 2 fetchFromGitHub, 3 lib, 4 postgresql, 5 postgresqlBuildExtension, 6 protobufc, 7}: 8 9postgresqlBuildExtension { 10 pname = "cstore_fdw"; 11 version = "1.7.0-unstable-2021-03-08"; 12 13 buildInputs = [ protobufc ]; 14 nativeBuildInputs = [ protobufc ]; 15 16 src = fetchFromGitHub { 17 owner = "citusdata"; 18 repo = "cstore_fdw"; 19 rev = "90e22b62fbee6852529104fdd463f532cf7a3311"; 20 hash = "sha256-02wcCqs8A5ZOZX080fgcNJTQrYQctnlwnA8+YPaRTZc="; 21 }; 22 23 meta = { 24 broken = lib.versionAtLeast postgresql.version "14"; 25 description = "Columnar storage for PostgreSQL"; 26 homepage = "https://github.com/citusdata/cstore_fdw"; 27 maintainers = with lib.maintainers; [ thoughtpolice ]; 28 platforms = postgresql.meta.platforms; 29 license = lib.licenses.asl20; 30 }; 31}