Skip to content

Commit 95ebede

Browse files
committed
Version 0.1.0
1 parent c93118f commit 95ebede

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

README.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Creating directory: /home/jon/projects/nixpkgs/pkgs/development/python-modules/r
4444
Generating python expression at /home/jon/projects/nixpkgs/pkgs/development/python-modules/requests/default.nix
4545
Please add the following line to the approriate file in top-level:
4646

47-
requests = python3Packages.callPackage ../development/python-modules/requests { };
47+
requests = callPackage ../development/python-modules/requests { };
4848
```
4949
```nix
5050
# pkgs/development/python-modules/requests/default.nix
@@ -72,6 +72,30 @@ buildPythonPackage rec {
7272
}
7373
```
7474
75+
### Installation
76+
77+
with nix-pkgs:
78+
```
79+
# from current repo
80+
$ nix-env -f default.nix -iA ""
81+
```
82+
83+
with cargo
84+
```
85+
$ cargo install --path .
86+
```
87+
88+
### Development
89+
90+
Installing depedencies on nixpkgs:
91+
```
92+
nix-shell
93+
```
94+
95+
Other platforms, you'll need the following dependencies:
96+
- cargo
97+
- rustc
98+
- rust-clippy
7599
76100
## End Goal
77101

src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ where
1414

1515
pub fn build_cli() -> App<'static, 'static> {
1616
App::new("nix-template")
17-
.version("0.1")
17+
.version("0.1.0")
1818
.author("Jon Ringer <jonringer117@gmail.com>")
1919
.about("Create common nix expressions")
2020
.version_short("V")

0 commit comments

Comments
 (0)