{"id":18980612,"url":"https://github.com/snowfallorg/thaw","last_synced_at":"2025-04-19T19:13:00.629Z","repository":{"id":204380271,"uuid":"711701706","full_name":"snowfallorg/thaw","owner":"snowfallorg","description":"Semantic Versioning for Nix Flakes","archived":false,"fork":false,"pushed_at":"2024-05-25T22:24:10.000Z","size":44,"stargazers_count":43,"open_issues_count":2,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-29T12:05:46.615Z","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,"publiccode":null,"codemeta":null}},"created_at":"2023-10-30T01:57:46.000Z","updated_at":"2025-03-13T15:22:38.000Z","dependencies_parsed_at":"2023-11-15T12:29:04.261Z","dependency_job_id":"7421c4eb-cac8-4a2c-bfef-a190580846bb","html_url":"https://github.com/snowfallorg/thaw","commit_stats":null,"previous_names":["snowfallorg/thaw"],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Fthaw","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Fthaw/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Fthaw/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Fthaw/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/snowfallorg","download_url":"https://codeload.github.com/snowfallorg/thaw/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249239334,"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.462Z","updated_at":"2025-04-16T12:31:10.850Z","avatar_url":"https://github.com/snowfallorg.png","language":"TypeScript","funding_links":[],"categories":["others"],"sub_categories":[],"readme":"# Snowfall Thaw\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 Semantic Versioning for Nix Flakes.\n\n## Features\n\nThaw works by operating directly on the `ref` specified for your flake's inputs. If a ref exists\non the input and is a valid SemVer version, thaw will attempt to upgrade it to the latest version.\nBoth url querey param and object configuration syntax are supported.\n\nBy default, non-major upgrades are allowed, but this can be changed with the `--major` flag. No\nadditional tools or components are required.\n\nSupported flake input types:\n\n- [x] GitHub\n- [ ] GitLab\n- [ ] Gitea\n- [ ] SourceHut\n\nNeed one of these supported? Open an issue or submit a pull request!\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/thaw\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 thaw\";\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\tsnowfall-thaw = {\n\t\t\turl = \"github:snowfallorg/thaw\";\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 thaw.\n\t\t\t\tsnowfall-thaw.overlays.default\n\n\t\t\t\t# There is also a named overlay, though the output is the same.\n\t\t\t\tsnowfall-thaw.overlays.\"package/thaw\"\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.thaw` package.\n\n```nix\n{ pkgs }:\n\n{\n\tenvironment.systemPackages = with pkgs; [\n\t\tsnowfallorg.thaw\n\t];\n}\n```\n\n## Usage\n\n```\nthaw\n\nDESCRIPTION\n\n  Upgrade Nix Flake inputs using SemVer.\n\nUSAGE\n\n  $ thaw [options] [...inputs]\n\nOPTIONS\n\n  --flake, -f               Choose a flake other than the current directory\n  --major, -M               Allow major version upgrades\n  --init, -i                Initialize inputs to the latest version\n  --dry-run, -d             Show available upgrades without applying them\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%2Fthaw","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsnowfallorg%2Fthaw","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnowfallorg%2Fthaw/lists"}