mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-19 15:11:30 +00:00
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
30 lines
926 B
Nix
30 lines
926 B
Nix
{ lib, stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ydiff";
|
|
version = "1.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "f5430577ecd30974d766ee9b8333e06dc76a947b4aae36d39612a0787865a121";
|
|
};
|
|
|
|
# test suite requires a multitude of other version control tooling
|
|
# currently only a single file, an import/usage should suffice
|
|
checkPhase = ''
|
|
$out/bin/ydiff --help
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "View colored, incremental diff in workspace or from stdin with side by side and auto pager support (Was \"cdiff\")";
|
|
longDescription = ''
|
|
Term based tool to view colored, incremental diff in a Git/Mercurial/Svn
|
|
workspace or from stdin, with side by side (similar to diff -y) and auto
|
|
pager support
|
|
'';
|
|
homepage = "https://github.com/ymattw/ydiff";
|
|
license = licenses.bsd3;
|
|
maintainers = teams.deshaw.members;
|
|
};
|
|
}
|