zsh-history-to-fish: init at 0.3.0
This commit is contained in:
parent
0632b86af6
commit
4ebf6f397d
2 changed files with 35 additions and 0 deletions
33
pkgs/tools/misc/zsh-history-to-fish/default.nix
Normal file
33
pkgs/tools/misc/zsh-history-to-fish/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ lib
|
||||
, fetchPypi
|
||||
, python3
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "zsh-history-to-fish";
|
||||
version = "0.3.0";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-expPuffZttyXNRreplPC5Ee/jfWAyOnmjTIMXONtrnw=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
click
|
||||
];
|
||||
|
||||
# upstream has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"zsh_history_to_fish"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Bring your ZSH history to Fish shell";
|
||||
homepage = "https://github.com/rsalmei/zsh-history-to-fish";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ alanpearce ];
|
||||
};
|
||||
}
|
|
@ -2022,6 +2022,8 @@ with pkgs;
|
|||
|
||||
yarn-lock-converter = callPackage ../tools/package-management/yarn-lock-converter { };
|
||||
|
||||
zsh-history-to-fish = callPackage ../tools/misc/zsh-history-to-fish { };
|
||||
|
||||
archi = callPackage ../tools/misc/archi { };
|
||||
|
||||
breitbandmessung = callPackage ../applications/networking/breitbandmessung { };
|
||||
|
|
Loading…
Reference in a new issue