mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
setconf: init at 0.7.7
This commit is contained in:
parent
5f36cb925a
commit
e83911bd90
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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user