{"id":16866735,"url":"https://github.com/rvolosatovs/nixify","last_synced_at":"2025-07-02T20:32:42.424Z","repository":{"id":61424851,"uuid":"550276820","full_name":"rvolosatovs/nixify","owner":"rvolosatovs","description":"Simple and extensible nix build library for real-world projects","archived":false,"fork":false,"pushed_at":"2024-10-29T08:34:44.000Z","size":468,"stargazers_count":33,"open_issues_count":6,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-10-29T09:52:46.707Z","etag":null,"topics":["aarch64","android","armv6","armv7","cross-compiler","crossplatform","darwin","linux","musl","nix","powerpc64le","riscv64","rust","s390x","wasi","wasm","windows","x86-64"],"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/rvolosatovs.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":"2022-10-12T13:41:36.000Z","updated_at":"2024-10-29T08:34:47.000Z","dependencies_parsed_at":"2022-10-17T12:25:00.507Z","dependency_job_id":"f3a8ec8f-5939-4be9-b114-af439fa4dcd1","html_url":"https://github.com/rvolosatovs/nixify","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rvolosatovs%2Fnixify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rvolosatovs%2Fnixify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rvolosatovs%2Fnixify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rvolosatovs%2Fnixify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rvolosatovs","download_url":"https://codeload.github.com/rvolosatovs/nixify/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244924836,"owners_count":20532872,"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":["aarch64","android","armv6","armv7","cross-compiler","crossplatform","darwin","linux","musl","nix","powerpc64le","riscv64","rust","s390x","wasi","wasm","windows","x86-64"],"created_at":"2024-10-13T14:51:31.371Z","updated_at":"2025-03-22T07:30:39.824Z","avatar_url":"https://github.com/rvolosatovs.png","language":"Nix","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Description\n\nSimple, yet extensible, batteries-included Nix flake bootstrapping library for real-world projects with focus on building reproducible, portable binary artifacts for various targets efficiently and with little to no configuration.\n\n# Features\n\n- 0-config reproducible, portable binary artifacts\n    - Cross-compilation out-of-the-box\n    - Tiny OCI (Docker) images with statically-linked binaries out-of-the-box\n- Automatic per-system flake generation from a shared definition with consistent API\n- Source filtering\n\n# Usage\n\n## Generic flakes\n\n`nixify.lib.mkFlake` provides the flake construction functionality that all other language specific subsystems rely upon. It can be used to build a plain Nix flake or a generic project in your language of choice.\n\n### Examples\n\n- https://github.com/rvolosatovs/nix-log/blob/main/flake.nix\n- https://github.com/rvolosatovs/nix-modulate/blob/main/flake.nix\n- https://github.com/rvolosatovs/nixify/blob/main/flake.nix\n\n## Rust\n\n`nixify` relies on two files to \"Nixify\" Rust projects:\n- `Cargo.toml` (required), where `pname` and `version` will be taken from. Note, that virtual manifests are supported as well.\n- `rust-toolchain.toml` (optional). If exists, `nixify` will set up the Rust toolchain using data contained in this file. For cross-compilation scenarios, `nixify` will automatically add missing targets to the toolchain.\n\n### Cross-compilation\n\n|                                      | `aarch64-darwin` | `aarch64-linux` | `x86_64-darwin` | `x86_64-linux` |\n|:------------------------------------:|:----------------:|:---------------:|:---------------:|:--------------:|\n|      **`aarch64-apple-darwin`**      |         ✔️        |        ✔️        |        ✔️        |        ✔️       |\n|    **`aarch64-unknown-linux-gnu`**   |         ✔️        |        ✔️        |        ✔️        |        ✔️       |\n|   **`aarch64-unknown-linux-musl`**   |         ✔️        |        ✔️        |        ✔️        |        ✔️       |\n|      **`aarch64-linux-android`**     |         ❌        |        ❌        |        ❌        |        ✔️       |\n| **`arm-unknown-linux-gnueabihf`**    |         ✔️        |        ✔️        |        ✔️        |        ✔️       |\n| **`arm-unknown-linux-musleabihf`**   |         ✔️        |        ✔️        |        ✔️        |        ✔️       |\n| **`armv7-unknown-linux-gnueabihf`**  |         ✔️        |        ✔️        |        ✔️        |        ✔️       |\n| **`armv7-unknown-linux-musleabihf`** |         ✔️        |        ✔️        |        ✔️        |        ✔️       |\n| **`powerpc64le-unknown-linux-gnu`**  |         ✔️        |        ✔️        |        ✔️        |        ✔️       |\n| **`riscv64gc-unknown-linux-gnu`**    |         ✔️        |        ✔️        |        ✔️        |        ✔️       |\n| **`s390x-unknown-linux-gnu`**        |         ✔️        |        ✔️        |        ✔️        |        ✔️       |\n|     **`wasm32-unknown-unknown`**     |         ✔️        |        ✔️        |        ✔️        |        ✔️       |\n|           **`wasm32-wasi`**          |         ✔️        |        ✔️        |        ✔️        |        ✔️       |\n|       **`x86_64-apple-darwin`**      |         ✔️        |        ✔️        |        ✔️        |        ✔️       |\n|      **`x86_64-pc-windows-gnu`**     |         ✔️        |        ✔️        |        ✔️        |        ✔️       |\n|    **`x86_64-unknown-linux-gnu`**    |         ✔️        |        ✔️        |        ✔️        |        ✔️       |\n|    **`x86_64-unknown-linux-musl`**   |         ✔️        |        ✔️        |        ✔️        |        ✔️       |\n\n### Template\n\nTo nixify a Rust project:\n```\nnix flake init --template 'github:rvolosatovs/nixify#rust'\n```\n\n### Examples\n\n- https://github.com/bytecodealliance/wit-deps/blob/main/flake.nix\n- https://github.com/wasmcloud/wasmcloud/blob/main/flake.nix\n- https://github.com/profianinc/drawbridge/blob/main/flake.nix\n- https://github.com/profianinc/steward/blob/main/flake.nix\n\nA flake definition at `examples/rust-hello/flake.nix`:\n```nix\n{\n  inputs.nixify.url = github:rvolosatovs/nixify;\n\n  outputs = {nixify, ...}:\n    nixify.lib.rust.mkFlake {\n      src = ./.;\n    };\n}\n```\n\nProduces the following outputs:\n\n```\n$ nix flake show --no-write-lock-file 'github:rvolosatovs/nixify?dir=examples/rust-hello'\n\u003c...\u003e\n├───apps\n│   ├───aarch64-darwin\n│   │   ├───default: app\n│   │   ├───rust-hello: app\n│   │   └───rust-hello-debug: app\n│   ├───aarch64-linux\n│   │   ├───default: app\n│   │   ├───rust-hello: app\n│   │   └───rust-hello-debug: app\n│   ├───x86_64-darwin\n│   │   ├───default: app\n│   │   ├───rust-hello: app\n│   │   └───rust-hello-debug: app\n│   └───x86_64-linux\n│       ├───default: app\n│       ├───rust-hello: app\n│       └───rust-hello-debug: app\n├───checks\n│   ├───aarch64-darwin\n│   │   ├───audit: derivation 'rust-hello-audit-0.1.0'\n│   │   ├───clippy: derivation 'rust-hello-clippy-0.1.0'\n│   │   ├───doc: derivation 'rust-hello-doc-0.1.0'\n│   │   ├───fmt: derivation 'rust-hello-fmt-0.1.0'\n│   │   └───nextest: derivation 'rust-hello-nextest-0.1.0'\n│   ├───aarch64-linux\n│   │   ├───audit: derivation 'rust-hello-audit-0.1.0'\n│   │   ├───clippy: derivation 'rust-hello-clippy-0.1.0'\n│   │   ├───doc: derivation 'rust-hello-doc-0.1.0'\n│   │   ├───fmt: derivation 'rust-hello-fmt-0.1.0'\n│   │   └───nextest: derivation 'rust-hello-nextest-0.1.0'\n│   ├───x86_64-darwin\n│   │   ├───audit: derivation 'rust-hello-audit-0.1.0'\n│   │   ├───clippy: derivation 'rust-hello-clippy-0.1.0'\n│   │   ├───doc: derivation 'rust-hello-doc-0.1.0'\n│   │   ├───fmt: derivation 'rust-hello-fmt-0.1.0'\n│   │   └───nextest: derivation 'rust-hello-nextest-0.1.0'\n│   └───x86_64-linux\n│       ├───audit: derivation 'rust-hello-audit-0.1.0'\n│       ├───clippy: derivation 'rust-hello-clippy-0.1.0'\n│       ├───doc: derivation 'rust-hello-doc-0.1.0'\n│       ├───fmt: derivation 'rust-hello-fmt-0.1.0'\n│       └───nextest: derivation 'rust-hello-nextest-0.1.0'\n├───devShells\n│   ├───aarch64-darwin\n│   │   └───default: development environment 'nix-shell'\n│   ├───aarch64-linux\n│   │   └───default: development environment 'nix-shell'\n│   ├───x86_64-darwin\n│   │   └───default: development environment 'nix-shell'\n│   └───x86_64-linux\n│       └───default: development environment 'nix-shell'\n├───formatter\n│   ├───aarch64-darwin: package 'alejandra-3.0.0'\n│   ├───aarch64-linux: package 'alejandra-3.0.0'\n│   ├───x86_64-darwin: package 'alejandra-3.0.0'\n│   └───x86_64-linux: package 'alejandra-3.0.0'\n├───overlays\n│   ├───default: Nixpkgs overlay\n│   ├───fenix: Nixpkgs overlay\n│   ├───rust-hello: Nixpkgs overlay\n│   └───rust-overlay: Nixpkgs overlay\n└───packages\n    ├───aarch64-darwin\n    │   ├───build-rust-hello-oci: package 'build-rust-hello-oci'\n    │   ├───default: package 'rust-hello-0.1.0'\n    │   ├───rust-hello: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-aarch64-apple-darwin: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-aarch64-apple-darwin-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-aarch64-apple-darwin-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-aarch64-unknown-linux-gnu: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-aarch64-unknown-linux-gnu-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-aarch64-unknown-linux-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-aarch64-unknown-linux-musl: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-aarch64-unknown-linux-musl-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-aarch64-unknown-linux-musl-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-armv7-unknown-linux-musleabihf: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-armv7-unknown-linux-musleabihf-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-armv7-unknown-linux-musleabihf-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-aarch64-apple-darwin: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-aarch64-apple-darwin-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-aarch64-apple-darwin-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-aarch64-unknown-linux-gnu: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-aarch64-unknown-linux-gnu-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-aarch64-unknown-linux-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-aarch64-unknown-linux-musl: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-aarch64-unknown-linux-musl-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-aarch64-unknown-linux-musl-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-armv7-unknown-linux-musleabihf: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-armv7-unknown-linux-musleabihf-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-armv7-unknown-linux-musleabihf-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-wasm32-unknown-unknown: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-wasm32-unknown-unknown-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-wasm32-unknown-unknown-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-wasm32-wasi: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-wasm32-wasi-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-wasm32-wasi-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-x86_64-apple-darwin: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-x86_64-apple-darwin-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-x86_64-apple-darwin-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-x86_64-pc-windows-gnu: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-x86_64-pc-windows-gnu-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-x86_64-pc-windows-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-x86_64-unknown-linux-gnu: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-x86_64-unknown-linux-gnu-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-x86_64-unknown-linux-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-x86_64-unknown-linux-musl: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-x86_64-unknown-linux-musl-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-x86_64-unknown-linux-musl-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-wasm32-unknown-unknown: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-wasm32-unknown-unknown-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-wasm32-unknown-unknown-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-wasm32-wasi: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-wasm32-wasi-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-wasm32-wasi-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-x86_64-apple-darwin: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-x86_64-apple-darwin-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-x86_64-apple-darwin-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-x86_64-pc-windows-gnu: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-x86_64-pc-windows-gnu-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-x86_64-pc-windows-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-x86_64-unknown-linux-gnu: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-x86_64-unknown-linux-gnu-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-x86_64-unknown-linux-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-x86_64-unknown-linux-musl: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-x86_64-unknown-linux-musl-deps: package 'rust-hello-deps-0.1.0'\n    │   └───rust-hello-x86_64-unknown-linux-musl-oci: package 'docker-image-rust-hello.tar.gz'\n    ├───aarch64-linux\n    │   ├───build-rust-hello-oci: package 'build-rust-hello-oci'\n    │   ├───default: package 'rust-hello-0.1.0'\n    │   ├───rust-hello: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-aarch64-apple-darwin: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-aarch64-apple-darwin-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-aarch64-apple-darwin-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-aarch64-linux-android: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-aarch64-linux-android-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-aarch64-linux-android-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-aarch64-unknown-linux-gnu: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-aarch64-unknown-linux-gnu-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-aarch64-unknown-linux-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-aarch64-unknown-linux-musl: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-aarch64-unknown-linux-musl-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-aarch64-unknown-linux-musl-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-armv7-unknown-linux-musleabihf: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-armv7-unknown-linux-musleabihf-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-armv7-unknown-linux-musleabihf-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-aarch64-apple-darwin: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-aarch64-apple-darwin-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-aarch64-apple-darwin-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-aarch64-linux-android: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-aarch64-linux-android-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-aarch64-linux-android-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-aarch64-unknown-linux-gnu: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-aarch64-unknown-linux-gnu-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-aarch64-unknown-linux-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-aarch64-unknown-linux-musl: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-aarch64-unknown-linux-musl-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-aarch64-unknown-linux-musl-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-armv7-unknown-linux-musleabihf: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-armv7-unknown-linux-musleabihf-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-armv7-unknown-linux-musleabihf-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-wasm32-unknown-unknown: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-wasm32-unknown-unknown-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-wasm32-unknown-unknown-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-wasm32-wasi: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-wasm32-wasi-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-wasm32-wasi-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-x86_64-apple-darwin: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-x86_64-apple-darwin-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-x86_64-apple-darwin-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-x86_64-pc-windows-gnu: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-x86_64-pc-windows-gnu-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-x86_64-pc-windows-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-x86_64-unknown-linux-gnu: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-x86_64-unknown-linux-gnu-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-x86_64-unknown-linux-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-x86_64-unknown-linux-musl: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-x86_64-unknown-linux-musl-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-x86_64-unknown-linux-musl-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-wasm32-unknown-unknown: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-wasm32-unknown-unknown-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-wasm32-unknown-unknown-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-wasm32-wasi: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-wasm32-wasi-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-wasm32-wasi-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-x86_64-apple-darwin: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-x86_64-apple-darwin-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-x86_64-apple-darwin-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-x86_64-pc-windows-gnu: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-x86_64-pc-windows-gnu-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-x86_64-pc-windows-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-x86_64-unknown-linux-gnu: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-x86_64-unknown-linux-gnu-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-x86_64-unknown-linux-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-x86_64-unknown-linux-musl: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-x86_64-unknown-linux-musl-deps: package 'rust-hello-deps-0.1.0'\n    │   └───rust-hello-x86_64-unknown-linux-musl-oci: package 'docker-image-rust-hello.tar.gz'\n    ├───x86_64-darwin\n    │   ├───build-rust-hello-oci: package 'build-rust-hello-oci'\n    │   ├───default: package 'rust-hello-0.1.0'\n    │   ├───rust-hello: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-aarch64-apple-darwin: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-aarch64-apple-darwin-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-aarch64-apple-darwin-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-aarch64-unknown-linux-gnu: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-aarch64-unknown-linux-gnu-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-aarch64-unknown-linux-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-aarch64-unknown-linux-musl: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-aarch64-unknown-linux-musl-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-aarch64-unknown-linux-musl-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-armv7-unknown-linux-musleabihf: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-armv7-unknown-linux-musleabihf-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-armv7-unknown-linux-musleabihf-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-aarch64-apple-darwin: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-aarch64-apple-darwin-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-aarch64-apple-darwin-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-aarch64-unknown-linux-gnu: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-aarch64-unknown-linux-gnu-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-aarch64-unknown-linux-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-aarch64-unknown-linux-musl: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-aarch64-unknown-linux-musl-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-aarch64-unknown-linux-musl-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-armv7-unknown-linux-musleabihf: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-armv7-unknown-linux-musleabihf-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-armv7-unknown-linux-musleabihf-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-wasm32-unknown-unknown: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-wasm32-unknown-unknown-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-wasm32-unknown-unknown-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-wasm32-wasi: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-wasm32-wasi-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-wasm32-wasi-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-x86_64-apple-darwin: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-x86_64-apple-darwin-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-x86_64-apple-darwin-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-x86_64-pc-windows-gnu: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-x86_64-pc-windows-gnu-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-x86_64-pc-windows-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-x86_64-unknown-linux-gnu: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-x86_64-unknown-linux-gnu-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-x86_64-unknown-linux-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-debug-x86_64-unknown-linux-musl: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-debug-x86_64-unknown-linux-musl-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-debug-x86_64-unknown-linux-musl-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-wasm32-unknown-unknown: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-wasm32-unknown-unknown-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-wasm32-unknown-unknown-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-wasm32-wasi: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-wasm32-wasi-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-wasm32-wasi-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-x86_64-apple-darwin: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-x86_64-apple-darwin-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-x86_64-apple-darwin-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-x86_64-pc-windows-gnu: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-x86_64-pc-windows-gnu-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-x86_64-pc-windows-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-x86_64-unknown-linux-gnu: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-x86_64-unknown-linux-gnu-deps: package 'rust-hello-deps-0.1.0'\n    │   ├───rust-hello-x86_64-unknown-linux-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n    │   ├───rust-hello-x86_64-unknown-linux-musl: package 'rust-hello-0.1.0'\n    │   ├───rust-hello-x86_64-unknown-linux-musl-deps: package 'rust-hello-deps-0.1.0'\n    │   └───rust-hello-x86_64-unknown-linux-musl-oci: package 'docker-image-rust-hello.tar.gz'\n    └───x86_64-linux\n        ├───build-rust-hello-oci: package 'build-rust-hello-oci'\n        ├───default: package 'rust-hello-0.1.0'\n        ├───rust-hello: package 'rust-hello-0.1.0'\n        ├───rust-hello-aarch64-apple-darwin: package 'rust-hello-0.1.0'\n        ├───rust-hello-aarch64-apple-darwin-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-aarch64-apple-darwin-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-aarch64-linux-android: package 'rust-hello-0.1.0'\n        ├───rust-hello-aarch64-linux-android-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-aarch64-linux-android-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-aarch64-unknown-linux-gnu: package 'rust-hello-0.1.0'\n        ├───rust-hello-aarch64-unknown-linux-gnu-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-aarch64-unknown-linux-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-aarch64-unknown-linux-musl: package 'rust-hello-0.1.0'\n        ├───rust-hello-aarch64-unknown-linux-musl-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-aarch64-unknown-linux-musl-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-armv7-unknown-linux-musleabihf: package 'rust-hello-0.1.0'\n        ├───rust-hello-armv7-unknown-linux-musleabihf-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-armv7-unknown-linux-musleabihf-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-debug: package 'rust-hello-0.1.0'\n        ├───rust-hello-debug-aarch64-apple-darwin: package 'rust-hello-0.1.0'\n        ├───rust-hello-debug-aarch64-apple-darwin-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-debug-aarch64-apple-darwin-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-debug-aarch64-linux-android: package 'rust-hello-0.1.0'\n        ├───rust-hello-debug-aarch64-linux-android-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-debug-aarch64-linux-android-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-debug-aarch64-unknown-linux-gnu: package 'rust-hello-0.1.0'\n        ├───rust-hello-debug-aarch64-unknown-linux-gnu-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-debug-aarch64-unknown-linux-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-debug-aarch64-unknown-linux-musl: package 'rust-hello-0.1.0'\n        ├───rust-hello-debug-aarch64-unknown-linux-musl-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-debug-aarch64-unknown-linux-musl-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-debug-armv7-unknown-linux-musleabihf: package 'rust-hello-0.1.0'\n        ├───rust-hello-debug-armv7-unknown-linux-musleabihf-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-debug-armv7-unknown-linux-musleabihf-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-debug-wasm32-unknown-unknown: package 'rust-hello-0.1.0'\n        ├───rust-hello-debug-wasm32-unknown-unknown-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-debug-wasm32-unknown-unknown-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-debug-wasm32-wasi: package 'rust-hello-0.1.0'\n        ├───rust-hello-debug-wasm32-wasi-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-debug-wasm32-wasi-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-debug-x86_64-apple-darwin: package 'rust-hello-0.1.0'\n        ├───rust-hello-debug-x86_64-apple-darwin-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-debug-x86_64-apple-darwin-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-debug-x86_64-pc-windows-gnu: package 'rust-hello-0.1.0'\n        ├───rust-hello-debug-x86_64-pc-windows-gnu-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-debug-x86_64-pc-windows-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-debug-x86_64-unknown-linux-gnu: package 'rust-hello-0.1.0'\n        ├───rust-hello-debug-x86_64-unknown-linux-gnu-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-debug-x86_64-unknown-linux-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-debug-x86_64-unknown-linux-musl: package 'rust-hello-0.1.0'\n        ├───rust-hello-debug-x86_64-unknown-linux-musl-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-debug-x86_64-unknown-linux-musl-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-wasm32-unknown-unknown: package 'rust-hello-0.1.0'\n        ├───rust-hello-wasm32-unknown-unknown-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-wasm32-unknown-unknown-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-wasm32-wasi: package 'rust-hello-0.1.0'\n        ├───rust-hello-wasm32-wasi-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-wasm32-wasi-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-x86_64-apple-darwin: package 'rust-hello-0.1.0'\n        ├───rust-hello-x86_64-apple-darwin-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-x86_64-apple-darwin-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-x86_64-pc-windows-gnu: package 'rust-hello-0.1.0'\n        ├───rust-hello-x86_64-pc-windows-gnu-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-x86_64-pc-windows-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-x86_64-unknown-linux-gnu: package 'rust-hello-0.1.0'\n        ├───rust-hello-x86_64-unknown-linux-gnu-deps: package 'rust-hello-deps-0.1.0'\n        ├───rust-hello-x86_64-unknown-linux-gnu-oci: package 'docker-image-rust-hello.tar.gz'\n        ├───rust-hello-x86_64-unknown-linux-musl: package 'rust-hello-0.1.0'\n        ├───rust-hello-x86_64-unknown-linux-musl-deps: package 'rust-hello-deps-0.1.0'\n        └───rust-hello-x86_64-unknown-linux-musl-oci: package 'docker-image-rust-hello.tar.gz'\n```\n\n# Motivation\n\nFor a brief overview of motivation of this project to exist, see this talk at FOSDEM'23: https://archive.fosdem.org/2023/schedule/event/nix_and_nixos_a_success_story/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frvolosatovs%2Fnixify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frvolosatovs%2Fnixify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frvolosatovs%2Fnixify/lists"}