nixpkgs/pkgs/tools/text/icdiff/default.nix
Aneesh Agrawal e75297abba icdiff: 1.7.3 -> 1.9.0
Also move to all-packages.nix,
because it is an application and not a library.
2017-05-17 03:12:14 -04:00

21 lines
549 B
Nix

{ stdenv, fetchFromGitHub, pythonPackages }:
pythonPackages.buildPythonApplication rec {
name = "icdiff-${version}";
version = "1.9.0";
src = fetchFromGitHub {
owner = "jeffkaufman";
repo = "icdiff";
rev = "release-${version}";
sha256 = "03gcgj3xsqasvgkr8r0q1ljbw2kd2xmfb21qpxhk9lqqm2gl11sv";
};
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;
};
}