{"id":18980614,"url":"https://github.com/snowfallorg/whats-in-my-store","last_synced_at":"2025-04-19T19:13:52.469Z","repository":{"id":220628140,"uuid":"719431494","full_name":"snowfallorg/whats-in-my-store","owner":"snowfallorg","description":"Get the packages from NixPkgs found in your system's Nix Store","archived":false,"fork":false,"pushed_at":"2024-02-03T05:45:42.000Z","size":36,"stargazers_count":17,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-29T12:11:12.089Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/snowfallorg.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}},"created_at":"2023-11-16T06:35:11.000Z","updated_at":"2025-03-05T13:30:50.000Z","dependencies_parsed_at":"2024-02-03T07:44:53.345Z","dependency_job_id":null,"html_url":"https://github.com/snowfallorg/whats-in-my-store","commit_stats":null,"previous_names":["snowfallorg/whats-in-my-store"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Fwhats-in-my-store","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Fwhats-in-my-store/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Fwhats-in-my-store/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Fwhats-in-my-store/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/snowfallorg","download_url":"https://codeload.github.com/snowfallorg/whats-in-my-store/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249239336,"owners_count":21235845,"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":[],"created_at":"2024-11-08T16:07:15.805Z","updated_at":"2025-04-16T12:31:10.403Z","avatar_url":"https://github.com/snowfallorg.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# What's In My Store?\n\n\u003ca href=\"https://nixos.wiki/wiki/Flakes\" target=\"_blank\"\u003e\n\t\u003cimg alt=\"Nix Flakes Ready\" src=\"https://img.shields.io/static/v1?logo=nixos\u0026logoColor=d8dee9\u0026label=Nix%20Flakes\u0026labelColor=5e81ac\u0026message=Ready\u0026color=d8dee9\u0026style=for-the-badge\"\u003e\n\u003c/a\u003e\n\u003ca href=\"https://github.com/snowfallorg/lib\" target=\"_blank\"\u003e\n\t\u003cimg alt=\"Built With Snowfall\" src=\"https://img.shields.io/static/v1?label=Built%20With\u0026labelColor=5e81ac\u0026message=Snowfall\u0026color=d8dee9\u0026style=for-the-badge\"\u003e\n\u003c/a\u003e\n\n\u003cp\u003e\n\u003c!--\n\tThis paragraph is not empty, it contains an em space (UTF-8 8195) on the next line in order\n\tto create a gap in the page.\n--\u003e\n  \n\u003c/p\u003e\n\n\u003e Get the packages from NixPkgs found in your system's Nix Store.\n\n## Installation\n\n### Nix Profile\n\nYou can install this package imperatively with the following command.\n\n```bash\nnix profile install github:snowfallorg/whats-in-my-store\n```\n\n### Nix Configuration\n\nYou can install this package by adding it as an input to your Nix Flake.\n\n```nix\n{\n\tdescription = \"My system flake\";\n\n\tinputs = {\n\t\tnixpkgs.url = \"github:nixos/nixpkgs/nixos-23.05\";\n\n\t\t# Snowfall Lib is not required, but will make configuration easier for you.\n\t\tsnowfall-lib = {\n\t\t\turl = \"github:snowfallorg/lib\";\n\t\t\tinputs.nixpkgs.follows = \"nixpkgs\";\n\t\t};\n\n\t\twhats-in-my-store = {\n\t\t\turl = \"github:snowfallorg/whats-in-my-store\";\n\t\t\tinputs.nixpkgs.follows = \"nixpkgs\";\n\t\t};\n\t};\n\n\toutputs = inputs:\n\t\tinputs.snowfall-lib.mkFlake {\n\t\t\tinherit inputs;\n\t\t\tsrc = ./.;\n\n\t\t\toverlays = with inputs; [\n\t\t\t\t# Use the overlay provided by this flake.\n\t\t\t\twhats-in-my-store.overlays.default\n\n\t\t\t\t# There is also a named overlay, though the output is the same.\n\t\t\t\twhats-in-my-store.overlays.\"package/whats-in-my-store\"\n\t\t\t];\n\t\t};\n}\n```\n\nIf you've added the overlay from this flake, then in your system configuration you\ncan add the `snowfallorg.whats-in-my-store` package.\n\n```nix\n{ pkgs }:\n\n{\n\tenvironment.systemPackages = with pkgs; [\n\t\tsnowfallorg.whats-in-my-store\n\t];\n}\n```\n\n## Usage\n\n```\nwhats-in-my-store\n\nDESCRIPTION\n\n  Get the packages from NixPkgs found in your system's Nix Store.\n\nUSAGE\n\n  $ whats-in-my-store [options]\n\nOPTIONS\n\n  --nixpkgs-flake, -f       Choose the NixPkgs flake to search in\n  --nixpkgs-channel, -c     Choose the NixPkgs channel to search in\n  --output, -o              Output the results in a JSON file\n\n  --help, -h                Show this help message\n  --verbose                 Increase logging verbosity, up to 3 times\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnowfallorg%2Fwhats-in-my-store","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsnowfallorg%2Fwhats-in-my-store","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnowfallorg%2Fwhats-in-my-store/lists"}