nixpkgs/pkgs/by-name/sk/skeditor/package.nix
eveeifyeve c92e591bda skeditor: init at 2.8.1
skeditor: switch to skeditor csproj

skeditor: fix meta by renaming licences to licence

skeditor: fix formatting

skeditor: apply half of aleksanaa suggestions

skeditor: apply meta suggestion

Co-authored-by: Aleksana <alexander.huang.y@gmail.com>

skeditor: fix eval error with license

Co-authored-by: Aleksana <alexander.huang.y@gmail.com>

skeditor: fix description to meet conventions

Co-authored-by: Aleksana <alexander.huang.y@gmail.com>
2024-10-29 09:35:51 +11:00

35 lines
860 B
Nix

{
lib,
buildDotnetModule,
fetchFromGitHub,
dotnetCorePackages,
}:
buildDotnetModule rec {
pname = "skeditor";
version = "2.8.1";
src = fetchFromGitHub {
owner = "skeditorteam";
repo = "skeditor";
rev = "v${version}";
hash = "sha256-ojE276nonX52UTjvdKL5mX8dj3MNElqlR1A/c0vT9WE=";
};
projectFile = "SkEditor/SkEditor.csproj";
executables = [ "SkEditor" ];
nugetDeps = ./nuget-deps.nix;
dotnet-sdk = dotnetCorePackages.sdk_8_0;
dotnet-runtime = dotnetCorePackages.runtime_8_0;
passthru.updateScript = ./update.sh;
meta = {
description = "App for editing Skript files";
homepage = "https://github.com/SkEditorTeam/SkEditor";
changelog = "https://github.com/SkEditorTeam/SkEditor/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ eveeifyeve ];
};
}