Skip to content

Commit 96a8e11

Browse files
committed
bump version
1 parent fd9b2c6 commit 96a8e11

File tree

4 files changed

+82
-64
lines changed

4 files changed

+82
-64
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## v0.1.1 - 2023-02-06
4+
5+
### Fixes
6+
7+
- Fix compatibility with nixpkgs 22.11 ([#15](https://github.com/nix-community/nix-init/issues/15))
8+
- GitHub: sort tags by chronological order ([#18](https://github.com/nix-community/nix-init/issues/18))
9+
- Python: fix dependency parsing ([#22](https://github.com/nix-community/nix-init/issues/22))
10+
11+
### Features
12+
13+
- `--nixpkgs` to override nixpkgs ([#14](https://github.com/nix-community/nix-init/issues/14))
14+
- Handle deprecated spdx license identifiers
15+
- Python: detect build dependencies in build-system.requires ([#23](https://github.com/nix-community/nix-init/issues/23))
16+
317
## v0.1.0 - 2023-01-28
418

519
First release

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nix-init"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["figsoda <figsoda@pm.me>"]
55
edition = "2021"
66
description = "Generate Nix packages from URLs with hash prefetching, dependency inference, license detection, and more"

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,11 @@ Arguments:
4545
<OUTPUT> The path to output the generated file to
4646
4747
Options:
48-
-u, --url <URL> Specify the URL
49-
-c, --config <CONFIG> Specify the config file
50-
-h, --help Print help
51-
-V, --version Print version
48+
-u, --url <URL> Specify the URL
49+
-n, --nixpkgs <NIXPKGS> Path to nixpkgs (in nix)
50+
-c, --config <CONFIG> Specify the config file
51+
-h, --help Print help
52+
-V, --version Print version
5253
```
5354

5455
### Supported builders
@@ -77,6 +78,9 @@ nix-init will try to find `nix-init/config.toml` under XDG configuration directo
7778
# maintainers that will get added to the package meta
7879
maintainers = ["figsoda"]
7980

81+
# path to nixpkgs, equivalent to `--nixpkgs`
82+
nixpkgs = "<nixpkgs>"
83+
8084
# access tokens to access private repositories and avoid rate limits
8185
[access-tokens]
8286
"github.com" = "ghp_blahblahblah..."

0 commit comments

Comments
 (0)