1
0
Fork 0
myflake/README.md

37 lines
713 B
Markdown
Raw Permalink Normal View History

2024-04-12 18:04:56 +02:00
# My own flake with packages in dev before add it in nixpkgs
2024-04-12 17:27:17 +02:00
2024-04-12 18:17:51 +02:00
## How use it
```nix
inputs = {
[...]
myflake = {
url = "github:mrdev023/myflake";
inputs.nixpkgs.follows = "nixpkgs";
};
[...]
}
outputs = { [...], myflake }:
[...]
let
myflake-pkgs = import myflake { inherit system; };
in
[...]
```
Then you can use with myflake-pkgs.maildev in your project
2024-04-12 18:27:02 +02:00
## How to update packages
Run `nix develop` or `nix-shell`
Then run `nvfetcher` inside current shell
2024-04-12 18:04:56 +02:00
## Packages available
- maildev : Node (Auto updated with nvfetcher)
- mkdocs-render-swagger-plugin : Python
- stripe-mock : Go (Auto updated with nvfetcher)
2024-04-12 17:27:17 +02:00
# https://github.com/berberman/nvfetcher?tab=readme-ov-file#installation