File tree Expand file tree Collapse file tree 2 files changed +26
-2
lines changed
Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ Creating directory: /home/jon/projects/nixpkgs/pkgs/development/python-modules/r
4444Generating python expression at /home/jon/projects/nixpkgs/pkgs/development/python-modules/requests/default.nix
4545Please 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
Original file line number Diff line number Diff line change 1414
1515pub 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" )
You can’t perform that action at this time.
0 commit comments