summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/text/icdiff
diff options
context:
space:
mode:
authorAneesh Agrawal <aneeshusa@gmail.com>2016-03-23 09:37:57 -0400
committerAneesh Agrawal <aneeshusa@gmail.com>2016-03-23 15:04:50 -0400
commit4fad4d49f616697b06f0ee7351f1223f54339979 (patch)
tree5f8fc6aece5bc6fb80730fe229e806c83e496118 /pkgs/tools/text/icdiff
parent6648ef5d25aecb404fd70ec2036473271d9f8b32 (diff)
icdiff: init at 1.7.3
Diffstat (limited to 'pkgs/tools/text/icdiff')
-rw-r--r--pkgs/tools/text/icdiff/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/tools/text/icdiff/default.nix b/pkgs/tools/text/icdiff/default.nix
new file mode 100644
index 000000000000..8469a151aa09
--- /dev/null
+++ b/pkgs/tools/text/icdiff/default.nix
@@ -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;
+ };
+}