forked from mirrors/nixpkgs
Merge pull request #212197 from atorres1985-contrib/setconf
setconf: init at 0.7.7
This commit is contained in:
commit
61f1267be4
24
pkgs/tools/misc/setconf/default.nix
Normal file
24
pkgs/tools/misc/setconf/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -32409,6 +32409,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 { };
|
||||
|
|
Loading…
Reference in a new issue