{"id":15667921,"url":"https://github.com/rupurt/duckdb-nix","last_synced_at":"2025-10-24T14:14:04.954Z","repository":{"id":225025156,"uuid":"673530013","full_name":"rupurt/duckdb-nix","owner":"rupurt","description":"Nix flake for development with multiple DuckDB versions","archived":false,"fork":false,"pushed_at":"2025-04-26T17:46:30.000Z","size":20,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-10T07:39:01.138Z","etag":null,"topics":["duckdb","nix"],"latest_commit_sha":null,"homepage":"","language":"Nix","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rupurt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-08-01T20:55:27.000Z","updated_at":"2025-05-22T00:19:29.000Z","dependencies_parsed_at":"2025-09-10T05:28:58.059Z","dependency_job_id":"b7446894-c3b2-499b-a888-88d13fc37ae1","html_url":"https://github.com/rupurt/duckdb-nix","commit_stats":null,"previous_names":["rupurt/duckdb-nix"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rupurt/duckdb-nix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rupurt%2Fduckdb-nix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rupurt%2Fduckdb-nix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rupurt%2Fduckdb-nix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rupurt%2Fduckdb-nix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rupurt","download_url":"https://codeload.github.com/rupurt/duckdb-nix/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rupurt%2Fduckdb-nix/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280807685,"owners_count":26394652,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-24T02:00:06.418Z","response_time":73,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["duckdb","nix"],"created_at":"2024-10-03T14:05:50.829Z","updated_at":"2025-10-24T14:14:04.926Z","avatar_url":"https://github.com/rupurt.png","language":"Nix","funding_links":[],"categories":[],"sub_categories":[],"readme":"# duckdb-nix\n\nNix flake for development with multiple DuckDB versions\n\n## Versions\n\n- [main](https://github.com/duckdb/duckdb/commits/main)\n- [v1.2.2](https://github.com/duckdb/duckdb/releases/tag/v1.2.2)\n- [v1.2.1](https://github.com/duckdb/duckdb/releases/tag/v1.2.1)\n- [v1.2.0](https://github.com/duckdb/duckdb/releases/tag/v1.2.0)\n- [v1.1.3](https://github.com/duckdb/duckdb/releases/tag/v1.1.3)\n- [v0.10.2](https://github.com/duckdb/duckdb/releases/tag/v0.10.2)\n- [v0.10.1](https://github.com/duckdb/duckdb/releases/tag/v0.10.1)\n- [v0.10.0](https://github.com/duckdb/duckdb/releases/tag/v0.10.0)\n- [v0.9.2](https://github.com/duckdb/duckdb/releases/tag/v0.9.2)\n\n## Usage\n\nThis `duckdb-nix` flake assumes you have already [installed nix](https://determinate.systems/posts/determinate-nix-installer)\n\n### Flake Template\n\n```shell\n\u003e nix flake init -t github:rupurt/duckdb-nix#multi\n```\n\n### Custom Flake with Overlay\n\n```nix\n# flake.nix\n{\n  inputs.nixpkgs.url = \"github:nixos/nixpkgs?ref=nixos-unstable\";\n  inputs.flake-utils.url = \"github:numtide/flake-utils\";\n  inputs.duckdb-nix.url = \"github:rupurt/duckdb-nix\";\n\n  outputs = {\n    self,\n    nixpkgs,\n    flake-utils,\n    duckdb-nix,\n    ...\n  }: let\n    systems = [\"x86_64-linux\" \"aarch64-linux\" \"x86_64-darwin\" \"aarch64-darwin\"];\n    outputs = flake-utils.lib.eachSystem systems (system: let\n      pkgs = import nixpkgs {\n        inherit system;\n        overlays = [\n          duckdb-nix.overlay\n        ];\n      };\n      in\n      {\n        devShells.default = pkgs.mkShell {\n          packages = [\n            pkgs.duckdb-pkgs.v1_2_2\n            # pkgs.duckdb-pkgs.v1_2_1\n            # pkgs.duckdb-pkgs.v1_2_0\n            # pkgs.duckdb-pkgs.v1_1_3\n            # pkgs.duckdb-pkgs.v0_10_2\n            # pkgs.duckdb-pkgs.v0_10_1\n            # pkgs.duckdb-pkgs.v0_10_0\n            # pkgs.duckdb-pkgs.v0_9_2\n            # pkgs.duckdb-pkgs.main\n          ];\n        };\n      };\n    );\n}\n```\n\n## License\n\n`duckdb-nix` is released under the [MIT license](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frupurt%2Fduckdb-nix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frupurt%2Fduckdb-nix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frupurt%2Fduckdb-nix/lists"}