{"id":15667949,"url":"https://github.com/rupurt/kcctl-nix","last_synced_at":"2025-06-15T08:38:09.010Z","repository":{"id":192115551,"uuid":"686088825","full_name":"rupurt/kcctl-nix","owner":"rupurt","description":"Nix flake for kcctl","archived":false,"fork":false,"pushed_at":"2023-09-02T18:26:05.000Z","size":2,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-05T06:46:22.861Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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}},"created_at":"2023-09-01T18:02:18.000Z","updated_at":"2024-01-18T16:25:40.000Z","dependencies_parsed_at":"2024-10-23T09:33:25.220Z","dependency_job_id":"91ce94ed-9123-4efa-a8ca-296b3fbba7e5","html_url":"https://github.com/rupurt/kcctl-nix","commit_stats":{"total_commits":1,"total_committers":1,"mean_commits":1.0,"dds":0.0,"last_synced_commit":"b7415496ceb950a08b6e8db39a56853690ef8fd5"},"previous_names":["rupurt/kcctl-nix"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rupurt%2Fkcctl-nix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rupurt%2Fkcctl-nix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rupurt%2Fkcctl-nix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rupurt%2Fkcctl-nix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rupurt","download_url":"https://codeload.github.com/rupurt/kcctl-nix/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246277351,"owners_count":20751548,"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-10-03T14:05:55.666Z","updated_at":"2025-03-30T04:41:27.295Z","avatar_url":"https://github.com/rupurt.png","language":"Nix","funding_links":[],"categories":[],"sub_categories":[],"readme":"# kcctl-nix\n\nNix [flake](https://nixos.wiki/wiki/Flakes) for [kcctl](https://github.com/kcctl/kcctl)\n\n## Usage\n\nThis `kcctl` `nix` flake assumes you have already [installed nix](https://determinate.systems/posts/determinate-nix-installer)\n\n### Option 1. Use the `kcctl` CLI within your own flake\n\n```nix\n{\n  inputs.nixpkgs.url = \"github:nixos/nixpkgs\";\n  inputs.kcctl.url = \"github:rupurt/kcctl-nix\";\n  inputs.flake-utils.url = \"github:numtide/flake-utils\";\n\n  outputs = {\n    self,\n    nixpkgs,\n    flake-utils,\n    kcctl,\n    ...\n  }:\n    flake-utils.lib.eachDefaultSystem (system:\n      let\n        pkgs = import nixpkgs {\n          inherit system;\n          overlays = [\n            kcctl.overlay\n          ];\n        };\n      in rec\n      {\n        packages = {\n          kcctl = pkgs.kcctl {};\n        };\n\n        devShells.default = pkgs.mkShell {\n          packages = [\n            packages.kcctl\n          ];\n        };\n      }\n    );\n}\n```\n\nThe above config will add `kcctl` to your dev shell and also allow you to execute it\nthrough the `nix` CLI utilities.\n\n```sh\n# run from devshell\nnix develop -c $SHELL\nkcctl\n```\n\n```sh\n# run default package\nnix run\n```\n\n### Option 2. Run the `kcctl` CLI directly with `nix run`\n\n```nix\nnix run github:rupurt/kcctl-nix\n```\n\n## Authors\n\n- Alex Kwiatkowski - alex+git@fremantle.io\n\n## License\n\n`kcctl-nix` is released under the MIT license\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frupurt%2Fkcctl-nix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frupurt%2Fkcctl-nix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frupurt%2Fkcctl-nix/lists"}