nixpkgs/pkgs/shells/hilbish/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1012 B
Nix
Raw Normal View History

2022-06-29 18:43:05 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
2021-05-06 23:40:42 +00:00
buildGoModule rec {
pname = "hilbish";
2024-01-07 05:12:42 +00:00
version = "2.2.1";
2021-05-06 23:40:42 +00:00
src = fetchFromGitHub {
2021-06-13 00:15:26 +00:00
owner = "Rosettea";
2021-05-06 23:40:42 +00:00
repo = "Hilbish";
rev = "v${version}";
2024-01-07 05:12:42 +00:00
hash = "sha256-pXl0emLY+W0DkW4HONv3qVZzCEZnx/SX3MjyBajsosg=";
2021-10-06 17:00:35 +00:00
fetchSubmodules = true;
2021-05-06 23:40:42 +00:00
};
2022-06-29 18:43:05 +00:00
subPackages = [ "." ];
2024-01-07 05:12:42 +00:00
vendorHash = "sha256-nE+THN+Q7Ze36c0nd3oROoFPLIzH/kw9qBwMxv+j9uE=";
2021-05-06 23:40:42 +00:00
2021-10-22 04:24:04 +00:00
ldflags = [
"-s"
"-w"
"-X main.dataDir=${placeholder "out"}/share/hilbish"
];
2021-10-06 17:00:35 +00:00
postInstall = ''
mkdir -p "$out/share/hilbish"
cp .hilbishrc.lua $out/share/hilbish/
2022-06-29 18:43:05 +00:00
cp -r docs -t $out/share/hilbish/
2021-10-06 17:00:35 +00:00
cp -r libs -t $out/share/hilbish/
2022-12-30 17:55:11 +00:00
cp -r nature $out/share/hilbish/
2021-10-06 17:00:35 +00:00
'';
2021-05-06 23:40:42 +00:00
meta = with lib; {
description = "An interactive Unix-like shell written in Go";
2021-06-13 00:15:26 +00:00
changelog = "https://github.com/Rosettea/Hilbish/releases/tag/v${version}";
homepage = "https://github.com/Rosettea/Hilbish";
2023-11-17 10:03:27 +00:00
maintainers = with maintainers; [ moni ];
2021-05-06 23:40:42 +00:00
license = licenses.mit;
};
}