icdiff: init at 1.7.3

This commit is contained in:
Aneesh Agrawal 2016-03-23 09:37:57 -04:00
parent 6648ef5d25
commit 4fad4d49f6
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchFromGitHub, buildPythonApplication }:
buildPythonApplication rec {
name = "icdiff-${version}";
version = "1.7.3";
src = fetchFromGitHub {
owner = "jeffkaufman";
repo = "icdiff";
rev = "release-${version}";
sha256 = "1k7dlf2i40flsrvkma1k1vii9hsjwdmwryx65q0n0yj4frv7ky6k";
};
meta = with stdenv.lib; {
homepage = https://www.jefftk.com/icdiff;
description = "Side-by-side highlighted command line diffs";
maintainers = with maintainers; [ aneeshusa ];
license = licenses.psfl;
};
}

View File

@ -10302,6 +10302,8 @@ in modules // {
};
};
icdiff = callPackage ../tools/text/icdiff {};
importlib = buildPythonPackage rec {
name = "importlib-1.0.2";