nixpkgs/pkgs/tools/misc/crudini/default.nix

50 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages, help2man, installShellFiles }:
2017-03-14 08:45:05 +00:00
2020-10-02 02:15:22 +00:00
python3Packages.buildPythonApplication rec {
2019-08-31 11:41:23 +00:00
pname = "crudini";
2019-09-26 13:24:42 +00:00
version = "0.9.3";
2017-03-14 08:45:05 +00:00
src = fetchFromGitHub {
2020-10-02 02:15:22 +00:00
owner = "pixelb";
repo = "crudini";
rev = version;
2019-09-26 13:24:42 +00:00
sha256 = "0298hvg0fpk0m0bjpwryj3icksbckwqqsr9w1ain55wf5s0v24k3";
2017-03-14 08:45:05 +00:00
};
2019-09-26 13:24:42 +00:00
nativeBuildInputs = [ help2man installShellFiles ];
2020-10-02 02:15:22 +00:00
propagatedBuildInputs = with python3Packages; [ iniparse ];
2019-09-26 13:24:42 +00:00
postPatch = ''
substituteInPlace crudini-help \
--replace ./crudini $out/bin/crudini
substituteInPlace tests/test.sh \
--replace ..: $out/bin:
'';
postInstall = ''
2019-09-26 13:24:42 +00:00
# this just creates the man page
make all
2019-09-26 13:24:42 +00:00
install -Dm444 -t $out/share/doc/${pname} README EXAMPLES
installManPage *.1
'';
checkPhase = ''
2019-09-26 13:24:42 +00:00
runHook preCheck
2017-03-14 10:44:00 +00:00
pushd tests >/dev/null
2019-09-26 13:24:42 +00:00
bash ./test.sh
popd >/dev/null
runHook postCheck
2017-03-14 10:44:00 +00:00
'';
meta = with lib; {
2017-03-14 08:45:05 +00:00
description = "A utility for manipulating ini files ";
2019-09-26 13:24:42 +00:00
homepage = "https://www.pixelbeat.org/programs/crudini/";
2020-10-02 02:15:22 +00:00
license = licenses.gpl2Only;
2017-03-14 10:44:00 +00:00
maintainers = with maintainers; [ peterhoeg ];
2017-03-14 08:45:05 +00:00
};
}