{"id":14968017,"url":"https://github.com/wimpysworld/obs-studio-flaking-loaded","last_synced_at":"2025-10-26T00:30:47.453Z","repository":{"id":156309059,"uuid":"623944812","full_name":"wimpysworld/obs-studio-flaking-loaded","owner":"wimpysworld","description":"OBS Studio for NixOS ❄️ that bundles an extensive collection of 3rd party plugins","archived":false,"fork":false,"pushed_at":"2023-04-26T13:09:48.000Z","size":5,"stargazers_count":5,"open_issues_count":19,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-31T12:51:20.111Z","etag":null,"topics":["flake","nix","nix-flake","nixos","nixpkgs","obs-studio","obs-studio-plugin"],"latest_commit_sha":null,"homepage":"","language":null,"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/wimpysworld.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}},"created_at":"2023-04-05T12:23:05.000Z","updated_at":"2023-08-07T08:43:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"2745b3b9-952b-4216-8a38-98e87e883158","html_url":"https://github.com/wimpysworld/obs-studio-flaking-loaded","commit_stats":{"total_commits":3,"total_committers":2,"mean_commits":1.5,"dds":"0.33333333333333337","last_synced_commit":"5169ea81ac698c5b5564af7f39fd8247fca73882"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wimpysworld%2Fobs-studio-flaking-loaded","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wimpysworld%2Fobs-studio-flaking-loaded/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wimpysworld%2Fobs-studio-flaking-loaded/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wimpysworld%2Fobs-studio-flaking-loaded/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wimpysworld","download_url":"https://codeload.github.com/wimpysworld/obs-studio-flaking-loaded/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238229940,"owners_count":19437723,"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","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":["flake","nix","nix-flake","nixos","nixpkgs","obs-studio","obs-studio-plugin"],"created_at":"2024-09-24T13:39:06.696Z","updated_at":"2025-10-26T00:30:47.101Z","avatar_url":"https://github.com/wimpysworld.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# OBS Studio Flaking Loaded\n\nOBS Studio for NixOS ❄️ that bundles an extensive collection of 3rd party plugins\n\n## Submitting OBS Studio Plugin to nixpkgs\n\n- Fork [nixpkgs](https://github.com/flexiondotorg/nixpkgs)\n- If this is your first OBS Studio plugin, add yourself as a maintainer.\n\nEdit `nixpkgs/maintainers/maintainer-list.nix` and add yourself (alphabetically) as a maintainer:\n\n```nix\n    handle = {\n      # Required\n      name = \"Your name\";\n\n      # Optional, but at least one of email, matrix or githubId must be given\n      email = \"address@example.org\";\n      matrix = \"@user:example.org\";\n      github = \"GithubUsername\";\n      githubId = your-github-id;\n\n      keys = [{\n        fingerprint = \"AAAA BBBB CCCC DDDD EEEE  FFFF 0000 1111 2222 3333\";\n      }];\n    };\n```\n\n- `handle` is the handle you are going to use in nixpkgs expressions,\n- `name` is your, preferably real, name,\n- `email` is your maintainer email address,\n- `matrix` is your Matrix user ID,\n- `github` is your GitHub handle (as it appears in the URL of your profile page, `https://github.com/\u003cuserhandle\u003e`),\n- `githubId` is your GitHub user ID, which can be found at `https://api.github.com/users/\u003cuserhandle\u003e`,\n- `keys` is a list of your PGP/GPG key fingerprints.\n\nThe commit message for adding yourself as a maintainer should be: `maintainers: add GithubUsername`\n\n## Add an OBS Studio plugin\n\n- Add `nixpkgs/pkgs/applications/video/obs-studio/plugins/name-of-plugin.nix`\n  - Use existing plugins as a reference.\n\n- Add the plugin to `nixpkgs/pkgs/applications/video/obs-studio/plugins/default.nix`\n  - Something like:\n\n```nix\nname-of-plugin = callPackage ./name-of-plugin.nix { };\n```\n\n- Commit changes locally\n  - Message for new OBS Studio plugins should be: `obs-studio-plugins.name-of-plugin: init at x.y.z` where x.y.z is the version number or commit reference.\n- Test build:\n\n```\ncd nixpkgs/pkgs/applications/video/obs-studio/plugins\nnix build .#obs-studio-plugins.name-of-plugin --tarball-ttl 0\n```\n- Update `sha256` in `nixpkgs/pkgs/applications/video/obs-studio/plugins/name-of-plugin.nix`\n- Commit and squash.\n- Build again: `nix build .#obs-studio-plugins.name-of-plugin --tarball-ttl 0`\n- Does it look like an OBS Studio plugin: `tree result/`\n- Run `nixpkgs-review`: `nix run nixpkgs#nixpkgs-review rev HEAD`\n- You'll be dropped into a shell, copy the contents of `report.md` for pasting in your pull request to nixpkgs\n  - **Do not copy/paste the snippet below**, it is just an example.\n\n```html\nResult of `nixpkgs-review` run on x86_64-linux [1](https://github.com/Mic92/nixpkgs-review)\n\u003cdetails\u003e\n  \u003csummary\u003e1 package built:\u003c/summary\u003e\n  \u003cul\u003e\n    \u003cli\u003eobs-studio-plugins.name-of-plugin\u003c/li\u003e\n  \u003c/ul\u003e\n\u003c/details\u003e\n```\n\n- Submit a pull request to nixpkgs\n\n#### Reference pull requests\n\n- https://github.com/NixOS/nixpkgs/pull/219872\n- https://github.com/NixOS/nixpkgs/pull/212262\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwimpysworld%2Fobs-studio-flaking-loaded","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwimpysworld%2Fobs-studio-flaking-loaded","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwimpysworld%2Fobs-studio-flaking-loaded/lists"}