Files
Jonathan Davies 116036d574 treewide: Remove redundant versionCheckProgramArg = "--version"; with:
```shell
git grep -l -e 'versionCheckProgramArg = "--version";' -e 'versionCheckProgramArg = \[ "--version" \];' | while read f; do
  sed -i '/versionCheckProgramArg/d' "$f"
  sed -i '/^$/N;/\n$/D' "$f"
done
```
2025-11-20 10:39:02 +00:00

42 lines
1.0 KiB
Nix

{
lib,
fetchFromGitHub,
rustPlatform,
nix-update-script,
versionCheckHook,
}:
let
version = "1.3.0";
in
rustPlatform.buildRustPackage {
pname = "patchy";
inherit version;
src = fetchFromGitHub {
owner = "nik-rev";
repo = "patchy";
tag = "v${version}";
hash = "sha256-7WAdfbnvsmaD8fMCJQ8dQenCDmLLxjVTj2DGcAhMxcg=";
};
cargoHash = "sha256-QaFIu7YVixQsDGL5fjQ3scKMyr0hw8lEWVc80EMTBB8=";
nativeInstallCheckInputs = [ versionCheckHook ];
doInstallCheck = true;
passthru.updateScript = nix-update-script { };
meta = {
description = "Makes it easy to maintain personal forks";
longDescription = ''
Patchy makes it easy to declaratively manage personal forks by
automatically merging pull request of your liking to have more
features.
'';
homepage = "https://github.com/nik-rev/patchy";
changelog = "https://github.com/nik-rev/patchy/releases/tag/v${version}";
license = lib.licenses.mit;
mainProgram = "patchy";
maintainers = with lib.maintainers; [ louis-thevenet ];
};
}