mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
see: init at unstable-2023-03-19
This commit is contained in:
parent
4d2389b927
commit
936b191b73
2 changed files with 33 additions and 0 deletions
31
pkgs/tools/misc/see/default.nix
Normal file
31
pkgs/tools/misc/see/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ 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 = "Textualize See is a command line tool to open files in the terminal.";
|
||||
homepage = "https://github.com/Textualize/textualize-see";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ anselmschueler ];
|
||||
};
|
||||
}
|
|
@ -6167,6 +6167,8 @@ with pkgs;
|
|||
|
||||
scour = with python3Packages; toPythonApplication scour;
|
||||
|
||||
see = callPackage ../tools/misc/see { };
|
||||
|
||||
s2png = callPackage ../tools/graphics/s2png { };
|
||||
|
||||
sfz = callPackage ../tools/misc/sfz { };
|
||||
|
|
Loading…
Reference in a new issue