mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
Merge pull request #85398 from seqizz/g_g933utils
g933-utils: init at unstable-2019-08-04
This commit is contained in:
commit
49c6ce192c
26
pkgs/tools/misc/g933-utils/default.nix
Normal file
26
pkgs/tools/misc/g933-utils/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchFromGitHub, rustPlatform, udev, pkgconfig }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "g933-utils";
|
||||
version = "unstable-2019-08-04";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ashkitten";
|
||||
repo = "g933-utils";
|
||||
rev = "b80cfd59fc41ae5d577c147311376dd7f7882493";
|
||||
sha256 = "06napzpk3nayzixb4l4fzdiwpgmcrsbc5j9m4qip1yn6dfkin3p0";
|
||||
};
|
||||
|
||||
cargoSha256 = "16xgk4rc36d6lylh2dzv63ryq9s7fli3h2qva1m1p6f0gpasnk7w";
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ udev ];
|
||||
|
||||
meta = with stdenv.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;
|
||||
};
|
||||
}
|
@ -20096,6 +20096,8 @@ in
|
||||
|
||||
fte = callPackage ../applications/editors/fte { };
|
||||
|
||||
g933-utils = callPackage ../tools/misc/g933-utils { };
|
||||
|
||||
game-music-emu = callPackage ../applications/audio/game-music-emu { };
|
||||
|
||||
gavrasm = callPackage ../development/compilers/gavrasm { };
|
||||
|
Loading…
Reference in New Issue
Block a user