Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
45 lines
1.0 KiB
Nix
45 lines
1.0 KiB
Nix
{
|
|
buildDotnetModule,
|
|
dotnetCorePackages,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
|
|
buildDotnetModule (finalAttrs: {
|
|
pname = "rockstarlang";
|
|
version = "2.0.31";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RockstarLang";
|
|
repo = "rockstar";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-243rN8hVaIfkEkkbgHZr2HKmqvG9KBVhvvoYJwoWgQs=";
|
|
};
|
|
|
|
projectFile = "Starship/Rockstar/Rockstar.csproj";
|
|
nugetDeps = ./deps.json;
|
|
|
|
dotnet-sdk = dotnetCorePackages.dotnet_9.sdk;
|
|
|
|
selfContainedBuild = true;
|
|
|
|
executables = "rockstar";
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
{
|
|
echo 'Shout "it seems to work"'
|
|
echo 'exit'
|
|
} | $out/bin/rockstar | grep '« "it seems to work"'
|
|
'';
|
|
|
|
meta = {
|
|
description = "Esoteric programming language whose syntax is inspired by the lyrics to 80s hard rock and heavy metal songs";
|
|
homepage = "https://codewithrockstar.com";
|
|
license = lib.licenses.agpl3Only;
|
|
sourceProvenance = [ lib.sourceTypes.fromSource ];
|
|
maintainers = [ lib.maintainers.pinage404 ];
|
|
mainProgram = "rockstar";
|
|
};
|
|
})
|