Skip to content

Commit

Permalink
Version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonringer committed Aug 31, 2020
1 parent c93118f commit 95ebede
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
26 changes: 25 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Creating directory: /home/jon/projects/nixpkgs/pkgs/development/python-modules/r
Generating python expression at /home/jon/projects/nixpkgs/pkgs/development/python-modules/requests/default.nix
Please add the following line to the approriate file in top-level:

requests = python3Packages.callPackage ../development/python-modules/requests { };
requests = callPackage ../development/python-modules/requests { };
```
```nix
# pkgs/development/python-modules/requests/default.nix
Expand Down Expand Up @@ -72,6 +72,30 @@ buildPythonPackage rec {
}
```
### Installation
with nix-pkgs:
```
# from current repo
$ nix-env -f default.nix -iA ""
```
with cargo
```
$ cargo install --path .
```
### Development
Installing depedencies on nixpkgs:
```
nix-shell
```
Other platforms, you'll need the following dependencies:
- cargo
- rustc
- rust-clippy
## End Goal
Expand Down
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ where

pub fn build_cli() -> App<'static, 'static> {
App::new("nix-template")
.version("0.1")
.version("0.1.0")
.author("Jon Ringer <[email protected]>")
.about("Create common nix expressions")
.version_short("V")
Expand Down

0 comments on commit 95ebede

Please sign in to comment.