konsave: init at 2.2.0

Co-authored-by: Keenan Weaver <37268985+keenanweaver@users.noreply.github.com>

authored by

Moritz Böhme
Keenan Weaver
and committed by
Artturin
e85ecaca dcf4a134

+29
+27
pkgs/applications/misc/konsave/default.nix
··· 1 + { lib, python3Packages, fetchPypi }: 2 + 3 + python3Packages.buildPythonApplication rec { 4 + pname = "konsave"; 5 + version = "2.2.0"; 6 + 7 + src = fetchPypi { 8 + inherit version; 9 + pname = "Konsave"; 10 + hash = "sha256-tWarqT2jFgCuSsa2NwMHRaR3/wj0khiRHidvRNMwM8M="; 11 + }; 12 + 13 + nativeBuildInputs = with python3Packages; [ setuptools-scm ]; 14 + propagatedBuildInputs = with python3Packages; [ pyyaml setuptools ]; 15 + 16 + preCheck = '' 17 + export HOME=$(mktemp -d) 18 + ''; 19 + 20 + meta = with lib; { 21 + description = "Save Linux Customization"; 22 + maintainers = with maintainers; [ MoritzBoehme ]; 23 + homepage = "https://github.com/Prayag2/konsave"; 24 + license = licenses.gpl3; 25 + platforms = platforms.linux; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 5778 5778 5779 5779 komorebi = callPackage ../applications/graphics/komorebi { }; 5780 5780 5781 + konsave = callPackage ../applications/misc/konsave { }; 5782 + 5781 5783 krapslog = callPackage ../tools/misc/krapslog { }; 5782 5784 5783 5785 krelay = callPackage ../applications/networking/cluster/krelay { };