3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request from aneeshusa/add-icdiff

icdiff: init at 1.7.3
This commit is contained in:
joachifm 2016-03-24 12:23:53 +00:00
commit 8c02233f2c
2 changed files with 22 additions and 0 deletions
pkgs
tools/text/icdiff
top-level

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

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