mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
2cb9858b34
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/icdiff/versions
21 lines
549 B
Nix
21 lines
549 B
Nix
{ stdenv, fetchFromGitHub, pythonPackages }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "icdiff-${version}";
|
|
version = "1.9.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jeffkaufman";
|
|
repo = "icdiff";
|
|
rev = "release-${version}";
|
|
sha256 = "1micpm7kq9swfscmp4mg37fnzgzpsg7704yi33c5sd6cmgbdabxm";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|