Skip to content

Commit

Permalink
Merge pull request #248423 from schuelermine/add/see
Browse files Browse the repository at this point in the history
see: init at unstable-2023-03-19
  • Loading branch information
onny authored Aug 11, 2023
2 parents e594a0f + 936b191 commit 979f71b
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pkgs/tools/misc/see/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6177,6 +6177,8 @@ with pkgs;

scour = with python3Packages; toPythonApplication scour;

see = callPackage ../tools/misc/see { };

s2png = callPackage ../tools/graphics/s2png { };

sfz = callPackage ../tools/misc/sfz { };
Expand Down

0 comments on commit 979f71b

Please sign in to comment.