Commit 4db19edb authored by Martin Joerg's avatar Martin Joerg
Browse files
parent a6f9c18c
Loading
Loading
Loading
Loading
+10 −8
Original line number Diff line number Diff line
@@ -16,16 +16,16 @@
  libgudev,
}:

python3Packages.buildPythonApplication {
python3Packages.buildPythonApplication rec {
  pname = "kazam";
  version = "unstable-2021-06-22";
  format = "pyproject";
  version = "1.5.5-unstable-2025-01-02";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "niknah";
    repo = "kazam";
    rev = "13f6ce124e5234348f56358b9134a87121f3438c";
    sha256 = "1jk6khwgdv3nmagdgp5ivz3156pl0ljhf7b6i4b52w1h5ywsg9ah";
    rev = "b6c1bddc9ac93aad50476f2c87fec9f0cf204f2a";
    hash = "sha256-xllpNoKeSXVWZhzlY60ZDnWIKoAW+cd08Tb1413Ldpk=";
  };

  nativeBuildInputs = [
@@ -51,6 +51,7 @@ python3Packages.buildPythonApplication {
  ];

  dependencies = with python3Packages; [
    distro
    pygobject3
    pyxdg
    pycairo
@@ -71,11 +72,12 @@ python3Packages.buildPythonApplication {

  pythonImportsCheck = [ "kazam" ];

  meta = with lib; {
  meta = {
    description = "Screencasting program created with design in mind";
    homepage = "https://github.com/niknah/kazam";
    license = licenses.lgpl3;
    platforms = platforms.linux;
    changelog = "https://github.com/niknah/kazam/raw/${src.rev}/NEWS";
    license = lib.licenses.lgpl3;
    platforms = lib.platforms.linux;
    maintainers = [ ];
    mainProgram = "kazam";
  };