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.
23 lines
596 B
Nix
23 lines
596 B
Nix
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "emplace";
|
|
version = "1.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tversteeg";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-lBCGSeEVxlXrn1RHqMEYSXLOehJw/DiL+33nx4+rV2Y=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-7LpUaOeBTIpi6A3cTRQAc1QostRgJp6bOf+AXy3mjyE=";
|
|
|
|
meta = with lib; {
|
|
description = "Mirror installed software on multiple machines";
|
|
homepage = "https://github.com/tversteeg/emplace";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = with maintainers; [ Br1ght0ne ];
|
|
};
|
|
}
|