38 lines
853 B
Nix
38 lines
853 B
Nix
|
{
|
||
|
lib,
|
||
|
fetchFromGitHub,
|
||
|
rustPlatform,
|
||
|
python3,
|
||
|
}:
|
||
|
|
||
|
rustPlatform.buildRustPackage rec {
|
||
|
pname = "sad";
|
||
|
version = "0.4.31";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "ms-jpq";
|
||
|
repo = "sad";
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-frsOfv98VdetlwgNA6O0KEhcCSY9tQeEwkl2am226ko=";
|
||
|
};
|
||
|
|
||
|
cargoHash = "sha256-2oZf2wim2h/krGZMg7Psxx0VLFE/Xf1d1vWqkVtjSmo=";
|
||
|
|
||
|
nativeBuildInputs = [ python3 ];
|
||
|
|
||
|
# fix for compilation on aarch64
|
||
|
# see https://github.com/NixOS/nixpkgs/issues/145726
|
||
|
prePatch = ''
|
||
|
rm .cargo/config.toml
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "CLI tool to search and replace";
|
||
|
homepage = "https://github.com/ms-jpq/sad";
|
||
|
changelog = "https://github.com/ms-jpq/sad/releases/tag/v${version}";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
mainProgram = "sad";
|
||
|
};
|
||
|
}
|