lol

hushboard: fix runtime error

+9
+9
pkgs/by-name/hu/hushboard/package.nix
··· 9 9 librsvg, 10 10 wrapGAppsHook3, 11 11 nix-update-script, 12 + fetchpatch, 12 13 }: 13 14 14 15 python3Packages.buildPythonApplication { ··· 22 23 rev = "13f5e62add99355f90798006742f62397be8be0c"; 23 24 hash = "sha256-z5ZSqcdKUHWt7kgW7ISZJei2YzVZHJGOqJ2IXv3qiWQ="; 24 25 }; 26 + 27 + patches = [ 28 + # https://github.com/stuartlangridge/hushboard/pull/30 29 + (fetchpatch { 30 + url = "https://github.com/stuartlangridge/hushboard/commit/b17b58cd00eb9af8184f8dcb010bbae7f9bc470c.patch"; 31 + hash = "sha256-C03hq2ttXY8DJzrarQvFIzo29d+owZVIHZRA28fq7Z8="; 32 + }) 33 + ]; 25 34 26 35 build-system = with python3Packages; [ setuptools ]; 27 36