Unverified Commit 0b0169e4 authored by Artturi's avatar Artturi Committed by GitHub
Browse files

Merge pull request #168475 from MoritzBoehme/konsave

parents f90f8543 e85ecaca
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{ lib, python3Packages, fetchPypi }:

python3Packages.buildPythonApplication rec {
  pname = "konsave";
  version = "2.2.0";

  src = fetchPypi {
    inherit version;
    pname = "Konsave";
    hash = "sha256-tWarqT2jFgCuSsa2NwMHRaR3/wj0khiRHidvRNMwM8M=";
  };

  nativeBuildInputs = with python3Packages; [ setuptools-scm ];
  propagatedBuildInputs = with python3Packages; [ pyyaml setuptools ];

  preCheck = ''
    export HOME=$(mktemp -d)
  '';

  meta = with lib; {
    description = "Save Linux Customization";
    maintainers = with maintainers; [ MoritzBoehme ];
    homepage = "https://github.com/Prayag2/konsave";
    license = licenses.gpl3;
    platforms = platforms.linux;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -5810,6 +5810,8 @@ with pkgs;
  komorebi = callPackage ../applications/graphics/komorebi { };
  konsave = callPackage ../applications/misc/konsave { };
  krapslog = callPackage ../tools/misc/krapslog { };
  krelay = callPackage ../applications/networking/cluster/krelay { };