hilbish: init at 0.4.0

This commit is contained in:
fortuneteller2k 2021-05-07 07:40:42 +08:00
parent 86878f63f9
commit b99ef3d4d8
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

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