Merge pull request #179605 from fortuneteller2k/hilbish
hilbish: 1.0.4 -> 1.2.0
This commit is contained in:
commit
1ef1d6caf9
1 changed files with 7 additions and 10 deletions
|
@ -1,18 +1,20 @@
|
||||||
{ lib, buildGoModule, fetchFromGitHub, readline }:
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "hilbish";
|
pname = "hilbish";
|
||||||
version = "1.0.4";
|
version = "1.2.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Rosettea";
|
owner = "Rosettea";
|
||||||
repo = "Hilbish";
|
repo = "Hilbish";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-JVAyE6iSfRres2YalQF3CWK5Jtn5HoW6p6RHVbwzoVQ=";
|
sha256 = "sha256-n4+qUCbjqxLmGuCQ0QTscJ3me0UZUP/7ggvGp1pNkfg=";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "sha256-Bmst1oJMuSXGvL8Syw6v2BqrbO5McHKkTufFs6iuxzs=";
|
subPackages = [ "." ];
|
||||||
|
|
||||||
|
vendorSha256 = "sha256-j7YAt7+kUJXdd/9LaRZny3MxYdd+0n5G3AffeDMo5DY=";
|
||||||
|
|
||||||
ldflags = [
|
ldflags = [
|
||||||
"-s"
|
"-s"
|
||||||
|
@ -24,13 +26,9 @@ buildGoModule rec {
|
||||||
mkdir -p "$out/share/hilbish"
|
mkdir -p "$out/share/hilbish"
|
||||||
|
|
||||||
cp .hilbishrc.lua $out/share/hilbish/
|
cp .hilbishrc.lua $out/share/hilbish/
|
||||||
cp -r docs -t $out/share/hilbish
|
cp -r docs -t $out/share/hilbish/
|
||||||
cp -r libs -t $out/share/hilbish/
|
cp -r libs -t $out/share/hilbish/
|
||||||
cp -r prelude/ $out/share/hilbish/
|
cp -r prelude/ $out/share/hilbish/
|
||||||
|
|
||||||
# segfaults and it's already been generated upstream
|
|
||||||
# we copy the docs over with the above cp command
|
|
||||||
rm $out/bin/docgen
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
@ -39,6 +37,5 @@ buildGoModule rec {
|
||||||
homepage = "https://github.com/Rosettea/Hilbish";
|
homepage = "https://github.com/Rosettea/Hilbish";
|
||||||
maintainers = with maintainers; [ fortuneteller2k ];
|
maintainers = with maintainers; [ fortuneteller2k ];
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = platforms.linux; # only officially supported on Linux
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue