mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
64 lines
1.4 KiB
Nix
64 lines
1.4 KiB
Nix
{ lib, stdenv
|
|
, buildPythonApplication
|
|
, fetchFromGitHub
|
|
, atk
|
|
, gobject-introspection
|
|
, wrapGAppsHook
|
|
, click
|
|
, hidapi
|
|
, psutil
|
|
, pygobject3
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "cm-rgb";
|
|
version = "0.3.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gfduszynski";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "04brldaa2zpvzkcg43i5hpbj03d1nqrgiplm5nh4shn12cif19ag";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
atk
|
|
|
|
# Populate GI_TYPELIB_PATH
|
|
gobject-introspection
|
|
wrapGAppsHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
click
|
|
hidapi
|
|
psutil
|
|
pygobject3
|
|
];
|
|
|
|
postInstall = ''
|
|
# Remove this line when/if this PR gets merged:
|
|
# https://github.com/gfduszynski/cm-rgb/pull/43
|
|
install -m0755 scripts/cm-rgb-gui $out/bin/cm-rgb-gui
|
|
|
|
mkdir -p $out/etc/udev/rules.d
|
|
echo 'SUBSYSTEM=="usb", ATTR{idVendor}=="2516", ATTR{idProduct}=="0051", TAG+="uaccess"' \
|
|
> $out/etc/udev/rules.d/60-cm-rgb.rules
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Control AMD Wraith Prism RGB LEDs";
|
|
longDescription = ''
|
|
cm-rgb controls AMD Wraith Prism RGB LEDS.
|
|
|
|
To permit non-root accounts to change use this utility on
|
|
NixOS, add this package to <literal>services.udev.packages</literal>
|
|
in <filename>configuration.nix</filename>.
|
|
'';
|
|
homepage = "https://github.com/gfduszynski/cm-rgb";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ danieldk ];
|
|
};
|
|
}
|