mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
base16-shell-preview: init at 0.3.0
This commit is contained in:
parent
59c81160e7
commit
e431d495bb
2 changed files with 25 additions and 0 deletions
23
pkgs/misc/base16-shell-preview/default.nix
Normal file
23
pkgs/misc/base16-shell-preview/default.nix
Normal file
|
@ -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 = [];
|
||||
};
|
||||
}
|
|
@ -918,6 +918,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…
Reference in a new issue