Skip to content

Commit

Permalink
see: init at unstable-2023-03-19
Browse files Browse the repository at this point in the history
  • Loading branch information
schuelermine committed Aug 10, 2023
1 parent 4d2389b commit 936b191
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 @@ -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 { };
Expand Down

0 comments on commit 936b191

Please sign in to comment.