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
779 B
Nix
27 lines
779 B
Nix
{ lib, fetchFromGitHub, rustPlatform, udev, pkg-config }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "g933-utils";
|
|
version = "unstable-2019-08-04";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ashkitten";
|
|
repo = "g933-utils";
|
|
rev = "b80cfd59fc41ae5d577c147311376dd7f7882493";
|
|
sha256 = "06napzpk3nayzixb4l4fzdiwpgmcrsbc5j9m4qip1yn6dfkin3p0";
|
|
};
|
|
|
|
cargoSha256 = "00gzfbxr5qzb9w7xkqd9jgfagb4c7p657m21b467pygzvaabbb8d";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ udev ];
|
|
|
|
meta = with lib; {
|
|
description = "An application to configure Logitech wireless G933/G533 headsets";
|
|
homepage = "https://github.com/ashkitten/g933-utils";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ seqizz ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|