mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-06 13:53:05 +00:00
c92e591bda
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>
35 lines
860 B
Nix
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 ];
|
|
};
|
|
}
|