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

55 lines
1.2 KiB
Nix
Raw Normal View History

2019-09-26 13:24:42 +00:00
{ stdenv, fetchFromGitHub, python2Packages, help2man, installShellFiles }:
2017-03-14 08:45:05 +00:00
2019-09-26 13:24:42 +00:00
let
# py3 is supposedly working in version 0.9.3 but the tests fail so stick to py2
pypkgs = python2Packages;
in
pypkgs.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 {
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 ];
2019-09-26 13:24:42 +00:00
propagatedBuildInputs = with pypkgs; [ 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
'';
2017-03-14 08:45:05 +00:00
meta = with stdenv.lib; {
description = "A utility for manipulating ini files ";
2019-09-26 13:24:42 +00:00
homepage = "https://www.pixelbeat.org/programs/crudini/";
2017-03-14 08:45:05 +00:00
license = licenses.gpl2;
2017-03-14 10:44:00 +00:00
maintainers = with maintainers; [ peterhoeg ];
2017-03-14 08:45:05 +00:00
};
}