-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
but in the end this sfackler guy's maintainer-induced dementia [makes this impossible](sfackler/rust-openssl#2122) so :P
- Loading branch information
Showing
5 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
lib, | ||
rustPlatform, | ||
|
||
|
||
rustc, | ||
cargo, | ||
pkg-config, | ||
openssl, | ||
|
||
}: | ||
rustPlatform.buildRustPackage rec { | ||
pname = "nmm-cli"; | ||
version = "0.0.1"; | ||
|
||
src = lib.cleanSource ./.; | ||
|
||
nativeBuildInputs = [ rustc cargo openssl.dev pkg-config ]; | ||
|
||
cargoLock.lockFile = ./Cargo.lock; | ||
|
||
buildPhase = '' | ||
export HOME=$(pwd) | ||
''; | ||
|
||
meta = with lib; { | ||
description = "A fast line-oriented regex search tool, similar to ag and ack"; | ||
homepage = "https://github.com/BurntSushi/ripgrep"; | ||
license = licenses.unlicense; | ||
maintainers = []; | ||
}; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters