screenkey: 1.2 -> 1.4

Thankfully some weird dependencies have been dropped in the new
releases.

+3 -10
+3 -10
pkgs/applications/video/screenkey/default.nix
··· 1 1 { lib 2 2 , fetchFromGitLab 3 3 # native 4 - , intltool 5 4 , wrapGAppsHook 6 - , file 7 5 # not native 8 6 , xorg 9 7 , gobject-introspection ··· 13 11 14 12 python3.pkgs.buildPythonApplication rec { 15 13 pname = "screenkey"; 16 - version = "1.2"; 14 + version = "1.4"; 17 15 18 16 src = fetchFromGitLab { 19 17 owner = "screenkey"; 20 18 repo = "screenkey"; 21 19 rev = "v${version}"; 22 - sha256 = "1x13n57iy2pg3h3r994q3g5nbmh2gwk3qidmmcv0g7qa89n2gwbj"; 20 + sha256 = "1rfngmkh01g5192pi04r1fm7vsz6hg9k3qd313sn9rl9xkjgp11l"; 23 21 }; 24 22 25 23 nativeBuildInputs = [ 26 - python3.pkgs.distutils_extra 27 - # Shouldn't be needed once https://gitlab.com/screenkey/screenkey/-/issues/122 is fixed. 28 - intltool 29 - # We are not sure why is this needed, but without it we get "file: command 30 - # not found" errors during build. 31 - file 32 24 wrapGAppsHook 33 25 # for setup hook 34 26 gobject-introspection ··· 39 31 ]; 40 32 41 33 propagatedBuildInputs = with python3.pkgs; [ 34 + Babel 42 35 pycairo 43 36 pygobject3 44 37 ];