mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-15 09:17:58 +00:00
Merge pull request #168475 from MoritzBoehme/konsave
This commit is contained in:
commit
0b0169e4f1
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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user