Skip to content

Commit 8a9a6c5

Browse files
committed
Update bundix version to 0.0.2
1 parent e156ea0 commit 8a9a6c5

File tree

3 files changed

+17
-27
lines changed

3 files changed

+17
-27
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ My bundix [fork](https://github.com/sagittaros/bundix) is needed to generate the
4747

4848
``` sh
4949
# installation
50-
nix profile install github:sagittaros/bundix
50+
nix profile install github:sagittaros/bundix/main
5151

5252
# upgrade
5353
nix profile upgrade '.*'
@@ -61,7 +61,7 @@ With nix [installed](/docs/nix-installation.md) and optionally [direnv](/docs/di
6161

6262
``` sh
6363
cd myapp
64-
nix flake init -t github:sagittaros/ruby-nix
64+
nix flake init -t github:sagittaros/ruby-nix/main
6565
```
6666

6767
#### 2. Enter nix shell

flake.lock

Lines changed: 11 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
nixpkgs.url = "nixpkgs";
66

77
# a fork that supports platform dependant gem
8-
bundix.url = "github:sagittaros/bundix";
8+
bundix = {
9+
url = "github:sagittaros/bundix/main";
10+
inputs.nixpkgs.follows = "nixpkgs";
11+
};
912
};
1013

1114
outputs = { self, nixpkgs, bundix }: {

0 commit comments

Comments
 (0)