mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
26 lines
630 B
Nix
26 lines
630 B
Nix
{ 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 ];
|
|
mainProgram = "setconf";
|
|
};
|
|
}
|