Merge pull request #196731 from rnhmjoj/pr-scc

sc-controller: 0.4.8.7 -> 0.4.8.9
main
Michele Guerini Rocco 2 years ago committed by GitHub
commit 13ad833a82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      pkgs/misc/drivers/sc-controller/default.nix

@ -1,5 +1,6 @@
{ lib, buildPythonApplication, fetchFromGitHub, wrapGAppsHook
, pytestCheckHook
, fetchpatch
, gtk3, gobject-introspection, libappindicator-gtk3, librsvg
, evdev, pygobject3, pylibacl, bluez, vdf
, linuxHeaders
@ -8,13 +9,13 @@
buildPythonApplication rec {
pname = "sc-controller";
version = "0.4.8.7";
version = "0.4.8.9";
src = fetchFromGitHub {
owner = "Ryochan7";
repo = pname;
rev = "v${version}";
sha256 = "03514sb1spaxdr7x1gq7b54z74in4kd060adj6sq1xjj6d9b297i";
sha256 = "sha256-ym5fkOTRhibBaUqT0+p/jyqqKOVsyMz5INgfkoz0IJA=";
};
# see https://github.com/NixOS/nixpkgs/issues/56943
@ -28,6 +29,14 @@ buildPythonApplication rec {
checkInputs = [ pytestCheckHook ];
patches = [
# Fix a broken test
(fetchpatch {
url = "https://github.com/Ryochan7/sc-controller/pull/73.patch";
sha256 = "sha256-qU8hIReZE3cEPCMOFc4RCUCIhiS0gJ3PushMkfDlPns=";
})
];
postPatch = ''
substituteInPlace scc/paths.py --replace sys.prefix "'$out'"
substituteInPlace scc/uinput.py --replace /usr/include ${linuxHeaders}/include

Loading…
Cancel
Save