nixpkgs/pkgs/tools/text/icdiff/default.nix

35 lines
817 B
Nix
Raw Normal View History

2021-03-26 08:27:14 +00:00
{ lib, fetchFromGitHub, python3Packages, bash, git, less }:
2016-03-23 13:37:57 +00:00
2021-03-26 08:27:14 +00:00
python3Packages.buildPythonApplication rec {
pname = "icdiff";
version = "1.9.5";
2016-03-23 13:37:57 +00:00
src = fetchFromGitHub {
owner = "jeffkaufman";
repo = "icdiff";
rev = "release-${version}";
sha256 = "080v8h09pv8qwplin4kwfm0kmqjwdqjfxbpcdrv16sv4hwfwl5qd";
2016-03-23 13:37:57 +00:00
};
2021-03-26 08:27:14 +00:00
checkInputs = [
bash
git
less
];
# error: could not lock config file /homeless-shelter/.gitconfig: No such file or directory
doCheck = false;
checkPhase = ''
patchShebangs test.sh
./test.sh ${python3Packages.python.interpreter}
'';
meta = with lib; {
homepage = "https://www.jefftk.com/icdiff";
2016-03-23 13:37:57 +00:00
description = "Side-by-side highlighted command line diffs";
maintainers = with maintainers; [ aneeshusa ];
license = licenses.psfl;
};
}