mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
Merge pull request #205939 from deejayem/add-seashells
This commit is contained in:
commit
236f1f5854
26
pkgs/applications/misc/seashells/default.nix
Normal file
26
pkgs/applications/misc/seashells/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib, python3Packages }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "seashells";
|
||||
version = "0.1.2";
|
||||
format = "setuptools";
|
||||
|
||||
src = python3Packages.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-RBs28FC7f82DrxRcmvTP9nljVpm7tjrGuvr05l32hDM=";
|
||||
};
|
||||
|
||||
doCheck = false; # there are no tests
|
||||
pythonImportsCheck = [ "seashells" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://seashells.io/";
|
||||
description = "Pipe command-line programs to seashells.io";
|
||||
longDescription = ''
|
||||
Official cient for seashells.io, which allows you to view
|
||||
command-line output on the web, in real-time.
|
||||
'';
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ deejayem ];
|
||||
};
|
||||
}
|
@ -11464,6 +11464,8 @@ with pkgs;
|
||||
|
||||
skim = callPackage ../tools/misc/skim { };
|
||||
|
||||
seashells = callPackage ../applications/misc/seashells { };
|
||||
|
||||
seaweedfs = callPackage ../applications/networking/seaweedfs { };
|
||||
|
||||
sec = callPackage ../tools/admin/sec { };
|
||||
|
Loading…
Reference in New Issue
Block a user