setconf: init at 0.7.7

This commit is contained in:
Anderson Torres 2023-01-22 22:31:33 -03:00
parent 5f36cb925a
commit e83911bd90
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib
, buildPythonApplication
, fetchFromGitHub
}:
buildPythonApplication rec {
pname = "setconf";
version = "0.7.7";
format = "setuptools";
src = fetchFromGitHub {
owner = "xyproto";
repo = "setconf";
rev = version;
hash = "sha256-HYZdDtDlGrT3zssDdMW3559hhC+cPy8qkmM8d9zEa1A=";
};
meta = {
homepage = "https://github.com/xyproto/setconf";
description = "A small utility for changing settings in configuration textfiles";
changelog = "https://github.com/xyproto/setconf/releases/tag/${version}";
maintainers = [ lib.maintainers.AndersonTorres ];
};
}

View file

@ -32399,6 +32399,8 @@ with pkgs;
secretscanner = callPackage ../tools/security/secretscanner { };
setconf = python3.pkgs.callPackage ../tools/misc/setconf { };
semiphemeral = callPackage ../tools/misc/semiphemeral { };
semver = callPackage ../applications/misc/semver { };