mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 15:04:44 +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.
38 lines
993 B
Nix
38 lines
993 B
Nix
{ lib, fetchFromGitHub, buildGoModule, installShellFiles, nixosTests }:
|
|
|
|
buildGoModule rec {
|
|
pname = "zsh-history";
|
|
version = "2019-12-10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "b4b4r07";
|
|
repo = "history";
|
|
rev = "8da016bd91b0c2eb53c9980f00eee6abdbb097e2";
|
|
sha256 = "13n643ik1zjvpk8h9458yd9ffahhbdnigmbrbmpn7b7g23wqqsi3";
|
|
};
|
|
|
|
vendorHash = "sha256-n5QFN1B2GjbzylFuW9Y4r0+ioIJlfKwcGK8X3ZwKLI8=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
doCheck = false;
|
|
|
|
postInstall = ''
|
|
install -d $out/share
|
|
cp -r "$NIX_BUILD_TOP/source/misc/"* "$out/share"
|
|
installShellCompletion --zsh --name _history $out/share/zsh/completions/_history
|
|
'';
|
|
|
|
passthru.tests = {
|
|
zsh-history-shell-integration = nixosTests.zsh-history;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "CLI to provide enhanced history for your ZSH shell";
|
|
homepage = "https://github.com/b4b4r07/history";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
mainProgram = "history";
|
|
};
|
|
}
|