nixpkgs/pkgs/shells/hilbish/default.nix

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

45 lines
1.2 KiB
Nix
Raw Normal View History

2021-05-07 01:40:42 +02:00
{ lib, buildGoModule, fetchFromGitHub, readline }:
buildGoModule rec {
pname = "hilbish";
2022-03-13 11:52:02 +01:00
version = "1.0.4";
2021-05-07 01:40:42 +02:00
src = fetchFromGitHub {
2021-06-13 02:15:26 +02:00
owner = "Rosettea";
2021-05-07 01:40:42 +02:00
repo = "Hilbish";
rev = "v${version}";
2022-03-13 11:52:02 +01:00
sha256 = "sha256-JVAyE6iSfRres2YalQF3CWK5Jtn5HoW6p6RHVbwzoVQ=";
2021-10-06 19:00:35 +02:00
fetchSubmodules = true;
2021-05-07 01:40:42 +02:00
};
2022-03-07 03:17:49 +01:00
vendorSha256 = "sha256-Bmst1oJMuSXGvL8Syw6v2BqrbO5McHKkTufFs6iuxzs=";
2021-05-07 01:40:42 +02:00
2021-10-22 06:24:04 +02:00
ldflags = [
"-s"
"-w"
"-X main.dataDir=${placeholder "out"}/share/hilbish"
];
2021-10-06 19:00:35 +02:00
postInstall = ''
mkdir -p "$out/share/hilbish"
cp .hilbishrc.lua $out/share/hilbish/
2021-10-18 02:18:16 +02:00
cp -r docs -t $out/share/hilbish
2021-10-06 19:00:35 +02:00
cp -r libs -t $out/share/hilbish/
2022-03-07 03:17:49 +01:00
cp -r prelude/ $out/share/hilbish/
2021-10-18 02:18:16 +02: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 19:00:35 +02:00
'';
2021-05-07 01:40:42 +02:00
meta = with lib; {
description = "An interactive Unix-like shell written in Go";
2021-06-13 02:15:26 +02:00
changelog = "https://github.com/Rosettea/Hilbish/releases/tag/v${version}";
homepage = "https://github.com/Rosettea/Hilbish";
2021-05-07 01:40:42 +02:00
maintainers = with maintainers; [ fortuneteller2k ];
license = licenses.mit;
platforms = platforms.linux; # only officially supported on Linux
};
}