Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
738 B
Nix
37 lines
738 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication {
|
|
pname = "see";
|
|
version = "0-unstable-2023-03-19";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Textualize";
|
|
repo = "textualize-see";
|
|
rev = "eef61dd348178ec60c5b0a01062e0b621eb57315";
|
|
hash = "sha256-SqjDHcFKWbk4ouWkhGohDl5kGjM/9fzqFDexVcaY1gw=";
|
|
};
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
click
|
|
colorama
|
|
toml
|
|
];
|
|
|
|
meta = {
|
|
description = "CLI tool to open files in the terminal";
|
|
homepage = "https://github.com/Textualize/textualize-see";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
mainProgram = "see";
|
|
};
|
|
}
|