nixpkgs/pkgs/shells/hilbish/default.nix

47 lines
1.2 KiB
Nix
Raw Normal View History

2021-05-06 23:40:42 +00:00
{ lib, buildGoModule, fetchFromGitHub, readline }:
buildGoModule rec {
pname = "hilbish";
2021-10-22 04:24:04 +00:00
version = "0.6.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}";
2021-10-22 04:24:04 +00:00
sha256 = "sha256-3qU1gQSWxyKgQcHgT61Q+n6u0rGU0vqTdT/VwMN20yw=";
2021-10-06 17:00:35 +00:00
fetchSubmodules = true;
2021-05-06 23:40:42 +00:00
};
2021-10-22 04:24:04 +00:00
vendorSha256 = "sha256-xnq0CEfz9uVpDkqY5/Sw9O5uMTHV74vQBXrav3bbH7E=";
2021-05-06 23:40:42 +00:00
buildInputs = [ readline ];
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/
2021-10-18 00:18:16 +00:00
cp -r docs -t $out/share/hilbish
2021-10-06 17:00:35 +00:00
cp -r libs -t $out/share/hilbish/
cp preload.lua $out/share/hilbish/
2021-10-18 00:18:16 +00:00
# segfaults and it's already been generated upstream
# we copy the docs over with the above cp command
rm $out/bin/docgen
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";
2021-05-06 23:40:42 +00:00
maintainers = with maintainers; [ fortuneteller2k ];
license = licenses.mit;
platforms = platforms.linux; # only officially supported on Linux
};
}