062210bdff
A recent upgrade of cargo-vendor changed its output slightly, which broke all cargoSha256 hashes in nixpkgs. See https://github.com/NixOS/nixpkgs/issues/60668 for more information. Since then, a few hashes have been fixed in master by hand, but there were a lot still to do, so I did all of the ones left over with some scripts I wrote. The one hash I wasn’t able to update was habitat's, because it’s currently broken and the build doesn’t get far enough to produce a hash anyway.
25 lines
620 B
Nix
25 lines
620 B
Nix
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "pazi";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "euank";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "12z2vyzmyxfq1krbbrjar7c2gvyq1969v16pb2pm7f4g4k24g0c8";
|
|
};
|
|
|
|
cargoSha256 = "1w97jvlamxlxkqpim5iyayhbsqvg3rqds2nxq1fk5imj4hbi3681";
|
|
|
|
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 ];
|
|
};
|
|
}
|