mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
55 lines
1.5 KiB
Nix
55 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
ncurses,
|
|
groff,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wiggle";
|
|
version = "1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "neilbrown";
|
|
repo = "wiggle";
|
|
rev = "v${version}";
|
|
sha256 = "18ilzr9sbal1j8p1d94ilm1j5blac5cngvcvjpdmgmpw6diy2ldf";
|
|
};
|
|
|
|
buildInputs = [
|
|
ncurses
|
|
groff
|
|
];
|
|
|
|
configurePhase = ''
|
|
makeFlagsArray=( CFLAGS="-I. -O3"
|
|
STRIP="-s"
|
|
INSTALL="install"
|
|
BINDIR="$out/bin"
|
|
MANDIR="$out/share/man"
|
|
)
|
|
patchShebangs .
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://blog.neil.brown.name/category/wiggle/";
|
|
description = "Tool for applying patches with conflicts";
|
|
mainProgram = "wiggle";
|
|
longDescription = ''
|
|
Wiggle applies patches to a file in a similar manner to the patch(1)
|
|
program. The distinctive difference is, however, that wiggle will
|
|
attempt to apply a patch even if the "before" part of the patch doesn't
|
|
match the target file perfectly. This is achieved by breaking the file
|
|
and patch into words and finding the best alignment of words in the file
|
|
with words in the patch. Once this alignment has been found, any
|
|
differences (word-wise) in the patch are applied to the file as best as
|
|
possible. Also, wiggle will (in some cases) detect changes that have
|
|
already been applied, and will ignore them.
|
|
'';
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.all;
|
|
maintainers = [ ];
|
|
};
|
|
}
|