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 { lib 2 , fetchFromGitLab 3 # native 4 - , intltool 5 , wrapGAppsHook 6 - , file 7 # not native 8 , xorg 9 , gobject-introspection ··· 13 14 python3.pkgs.buildPythonApplication rec { 15 pname = "screenkey"; 16 - version = "1.2"; 17 18 src = fetchFromGitLab { 19 owner = "screenkey"; 20 repo = "screenkey"; 21 rev = "v${version}"; 22 - sha256 = "1x13n57iy2pg3h3r994q3g5nbmh2gwk3qidmmcv0g7qa89n2gwbj"; 23 }; 24 25 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 wrapGAppsHook 33 # for setup hook 34 gobject-introspection ··· 39 ]; 40 41 propagatedBuildInputs = with python3.pkgs; [ 42 pycairo 43 pygobject3 44 ];
··· 1 { lib 2 , fetchFromGitLab 3 # native 4 , wrapGAppsHook 5 # not native 6 , xorg 7 , gobject-introspection ··· 11 12 python3.pkgs.buildPythonApplication rec { 13 pname = "screenkey"; 14 + version = "1.4"; 15 16 src = fetchFromGitLab { 17 owner = "screenkey"; 18 repo = "screenkey"; 19 rev = "v${version}"; 20 + sha256 = "1rfngmkh01g5192pi04r1fm7vsz6hg9k3qd313sn9rl9xkjgp11l"; 21 }; 22 23 nativeBuildInputs = [ 24 wrapGAppsHook 25 # for setup hook 26 gobject-introspection ··· 31 ]; 32 33 propagatedBuildInputs = with python3.pkgs; [ 34 + Babel 35 pycairo 36 pygobject3 37 ];