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.
27 lines
663 B
Nix
27 lines
663 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromSourcehut
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "dlm";
|
|
version = "2020-01-07";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~kennylevinsen";
|
|
repo = pname;
|
|
rev = "6b0e11c4f453b1a4d7a32019227539a980b7ce66";
|
|
sha256 = "1r3w7my0g3v2ya317qnvjx8wnagjahpj7yx72a65hf2pjbf5x42p";
|
|
};
|
|
|
|
cargoSha256 = "01a8k60qnx2pgxb2adgw30c2hjb60w6230khm5hyqgmp7z4rm8k8";
|
|
|
|
meta = with lib; {
|
|
description = "A stupid simple graphical login manager";
|
|
homepage = "https://git.sr.ht/~kennylevinsen/dlm";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ luc65r ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|