konsave: init at 2.2.0
Co-authored-by: Keenan Weaver <37268985+keenanweaver@users.noreply.github.com>
This commit is contained in:
parent
dcf4a134a6
commit
e85ecaca58
2 changed files with 29 additions and 0 deletions
27
pkgs/applications/misc/konsave/default.nix
Normal file
27
pkgs/applications/misc/konsave/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
|
@ -5778,6 +5778,8 @@ with pkgs;
|
|||
|
||||
komorebi = callPackage ../applications/graphics/komorebi { };
|
||||
|
||||
konsave = callPackage ../applications/misc/konsave { };
|
||||
|
||||
krapslog = callPackage ../tools/misc/krapslog { };
|
||||
|
||||
krelay = callPackage ../applications/networking/cluster/krelay { };
|
||||
|
|
Loading…
Reference in a new issue