Merge pull request #59547 from rencire/add-base-16-shell-preview

base16-shell-preview: init at 0.3.0
wip/yesman
worldofpeace 5 years ago committed by GitHub
commit a0ea9cc204
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      maintainers/maintainer-list.nix
  2. 23
      pkgs/misc/base16-shell-preview/default.nix
  3. 2
      pkgs/top-level/all-packages.nix

@ -4031,6 +4031,11 @@
github = "renatoGarcia";
name = "Renato Garcia";
};
rencire = {
email = "546296+rencire@users.noreply.github.com";
github = "rencire";
name = "Eric Ren";
};
renzo = {
email = "renzocarbonara@gmail.com";
github = "k0001";

@ -0,0 +1,23 @@
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "base16-shell-preview";
version = "0.3.0";
src = python3Packages.fetchPypi {
inherit version;
pname = "base16_shell_preview";
sha256 = "0x2fbicrcqgf2dl7dqzm14dz08vjjziabaaw33wah3v9wv4rw7jq";
};
# No tests
# If enabled, will attempt to run '__init__.py, and will fail with "/homeless-shelter" as HOME
doCheck = false;
meta = with lib; {
description = "Browse and preview Base16 Shell themes in your terminal";
homepage = https://github.com/nvllsvm/base16-shell-preview;
license = licenses.mit;
maintainers = [ maintainers.rencire ];
};
}

@ -917,6 +917,8 @@ in
bar = callPackage ../tools/system/bar {};
base16-shell-preview = callPackage ../misc/base16-shell-preview { };
base16-builder = callPackage ../misc/base16-builder { };
basex = callPackage ../tools/text/xml/basex { };

Loading…
Cancel
Save