kazam: unstable-2021-06-22 -> 1.5.5-unstable-2025-01-02

https://github.com/niknah/kazam/compare/13f6ce124e5234348f56358b9134a87121f3438c...b6c1bddc9ac93aad50476f2c87fec9f0cf204f2a

+10 -8
+10 -8
pkgs/by-name/ka/kazam/package.nix
··· 16 16 libgudev, 17 17 }: 18 18 19 - python3Packages.buildPythonApplication { 19 + python3Packages.buildPythonApplication rec { 20 20 pname = "kazam"; 21 - version = "unstable-2021-06-22"; 22 - format = "pyproject"; 21 + version = "1.5.5-unstable-2025-01-02"; 22 + pyproject = true; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "niknah"; 26 26 repo = "kazam"; 27 - rev = "13f6ce124e5234348f56358b9134a87121f3438c"; 28 - sha256 = "1jk6khwgdv3nmagdgp5ivz3156pl0ljhf7b6i4b52w1h5ywsg9ah"; 27 + rev = "b6c1bddc9ac93aad50476f2c87fec9f0cf204f2a"; 28 + hash = "sha256-xllpNoKeSXVWZhzlY60ZDnWIKoAW+cd08Tb1413Ldpk="; 29 29 }; 30 30 31 31 nativeBuildInputs = [ ··· 51 51 ]; 52 52 53 53 dependencies = with python3Packages; [ 54 + distro 54 55 pygobject3 55 56 pyxdg 56 57 pycairo ··· 71 72 72 73 pythonImportsCheck = [ "kazam" ]; 73 74 74 - meta = with lib; { 75 + meta = { 75 76 description = "Screencasting program created with design in mind"; 76 77 homepage = "https://github.com/niknah/kazam"; 77 - license = licenses.lgpl3; 78 - platforms = platforms.linux; 78 + changelog = "https://github.com/niknah/kazam/raw/${src.rev}/NEWS"; 79 + license = lib.licenses.lgpl3; 80 + platforms = lib.platforms.linux; 79 81 maintainers = [ ]; 80 82 mainProgram = "kazam"; 81 83 };