pazi: init at 0.2.0 (#60303)

This commit is contained in:
Bruno Bigras 2019-04-27 03:36:10 -04:00 committed by Frederik Rietdijk
parent 4d8b9cbbdd
commit 555f464453
3 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,13 @@
diff --git a/Cargo.lock b/Cargo.lock
index 074b0ca..22f3bc5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -286,7 +286,7 @@ dependencies = [
[[package]]
name = "pazi"
-version = "0.1.0"
+version = "0.2.0"
dependencies = [
"clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
"crossbeam-channel 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "pazi";
version = "0.2.0";
src = fetchFromGitHub {
owner = "euank";
repo = pname;
rev = "v${version}";
sha256 = "12z2vyzmyxfq1krbbrjar7c2gvyq1969v16pb2pm7f4g4k24g0c8";
};
cargoSha256 = "0mgjl5vazk5z1859lb2va9af9yivz47jw4b01rjr4mq67v9jfld1";
cargoPatches = [ ./cargo-lock.patch ];
meta = with stdenv.lib; {
description = "An autojump \"zap to directory\" helper";
homepage = https://github.com/euank/pazi;
license = licenses.gpl3;
maintainers = with maintainers; [ bbigras ];
};
}

View file

@ -4953,6 +4953,8 @@ in
paulstretch = callPackage ../applications/audio/paulstretch { };
pazi = callPackage ../tools/misc/pazi { };
pell = callPackage ../applications/misc/pell { };
pepper = callPackage ../tools/admin/salt/pepper { };