mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, perl
|
|
, stdenv
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "teip";
|
|
version = "2.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "greymd";
|
|
repo = "teip";
|
|
rev = "v${version}";
|
|
hash = "sha256-09IKAM1ha40CvF5hdQIlUab7EBBFourC70LAagrs5+4=";
|
|
};
|
|
|
|
cargoHash = "sha256-cBFczgvLja6upuPnXphG2d9Rf1ZpNAVh16NHAHfXxHg=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
nativeCheckInputs = [ perl ];
|
|
|
|
# tests are locale sensitive
|
|
preCheck = ''
|
|
export LANG=${if stdenv.hostPlatform.isDarwin then "en_US.UTF-8" else "C.UTF-8"}
|
|
'';
|
|
|
|
postInstall = ''
|
|
installManPage man/teip.1
|
|
installShellCompletion \
|
|
--bash completion/bash/teip \
|
|
--fish completion/fish/teip.fish \
|
|
--zsh completion/zsh/_teip
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tool to bypass a partial range of standard input to any command";
|
|
mainProgram = "teip";
|
|
homepage = "https://github.com/greymd/teip";
|
|
changelog = "https://github.com/greymd/teip/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|