nixpkgs/pkgs/tools/misc/g933-utils/default.nix
Daniël de Kok 85f96822a0 treewide: fix cargoSha256/cargoHash
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.
2021-05-08 00:36:37 -07:00

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;
};
}