85f96822a0
Rust 1.50.0 incorporated a Cargo change (rust-lang/cargo#8937) in which cargo vendor erroneously changed permissions of vendored crates. This was fixed in Rust 1.51.0 (rust-lang/cargo#9131). Unfortunately, this means that all cargoSha256/cargoHashes produced during the Rust 1.50.0 cycle are potentially broken. This change updates cargoSha256/cargoHash tree-wide. Fixes #121994.
26 lines
617 B
Nix
26 lines
617 B
Nix
{ fetchFromGitHub, rustPlatform, lib }:
|
|
|
|
with rustPlatform;
|
|
|
|
buildRustPackage rec {
|
|
pname = "tarssh";
|
|
version = "0.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "Freaky";
|
|
repo = pname;
|
|
sha256 = "sha256-AoKc8VF6rqYIsijIfgvevwu+6+suOO7XQCXXgAPNgLk=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-w1MNsMSGONsAAjyvAHjio2K88j1sqyP1Aqmw3EMya+c=";
|
|
|
|
meta = with lib; {
|
|
description = "A simple SSH tarpit inspired by endlessh";
|
|
homepage = "https://github.com/Freaky/tarssh";
|
|
license = [ licenses.mit ];
|
|
maintainers = with maintainers; [ sohalt ];
|
|
platforms = platforms.unix ;
|
|
};
|
|
}
|