mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
32 lines
766 B
Nix
32 lines
766 B
Nix
{ lib, python3, fetchFromGitHub }:
|
|
|
|
python3.pkgs.buildPythonApplication {
|
|
pname = "see";
|
|
version = "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 = with lib.maintainers; [ anselmschueler ];
|
|
mainProgram = "see";
|
|
};
|
|
}
|