Merge pull request #121964 from fortuneteller2k/add-hilbish

hilbish: init at 0.4.0
This commit is contained in:
Sandro 2021-05-10 19:19:38 +02:00 committed by GitHub
commit 3bfb2fc8f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib, buildGoModule, fetchFromGitHub, readline }:
buildGoModule rec {
pname = "hilbish";
version = "0.4.0";
src = fetchFromGitHub {
owner = "Hilbis";
repo = "Hilbish";
rev = "v${version}";
sha256 = "sha256-7YJkjkA6lGyO4PwJcdeUzqQvFsslDfIqAH6vlBtyYz8=";
};
vendorSha256 = "sha256-9FftzTn5nxjfsHStcnrn9a+sECmcHRBUEtFjsMp8/ks=";
buildInputs = [ readline ];
meta = with lib; {
description = "An interactive Unix-like shell written in Go";
changelog = "https://github.com/Hilbis/Hilbish/releases/tag/v${version}";
homepage = "https://github.com/Hilbis/Hilbish";
maintainers = with maintainers; [ fortuneteller2k ];
license = licenses.mit;
platforms = platforms.linux; # only officially supported on Linux
};
}

View file

@ -1481,6 +1481,8 @@ in
harvid = callPackage ../tools/video/harvid { };
hilbish = callPackage ../shells/hilbish { };
hime = callPackage ../tools/inputmethods/hime {};
hinit = haskell.lib.justStaticExecutables haskellPackages.hinit;