nixpkgs/pkgs/tools/misc/hexdiff/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

41 lines
877 B
Nix

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation {
pname = "hexdiff";
version = "unstable-2018-01-24";
src = fetchFromGitHub {
owner = "ahroach";
repo = "hexdiff";
rev = "3e96f27e65167c619ede35ab04232163dc273e69";
sha256 = "sha256-G6Qi7e4o+0ahcslJ8UfJrdoc8NNkY+nl6kyDlkJCo9I=";
};
dontConfigure = true;
buildPhase = ''
runHook preBuild
$CC -o hexdiff hexdiff.c
runHook postBuild
'';
installPhase = ''
runHook preInstall
install -D hexdiff -t $out/bin/
runHook postInstall
'';
meta = {
homepage = "https://github.com/ahroach/hexdiff";
description = "Terminal application for differencing two binary files, with color-coded output";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ rogarb ];
platforms = lib.platforms.linux;
mainProgram = "hexdiff";
};
}