hilbish: init at 0.4.0
This commit is contained in:
parent
86878f63f9
commit
b99ef3d4d8
2 changed files with 28 additions and 0 deletions
26
pkgs/shells/hilbish/default.nix
Normal file
26
pkgs/shells/hilbish/default.nix
Normal 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
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue