famistudio: 4.1.3 -> 4.2.0

This commit is contained in:
OPNA2608 2024-05-14 08:11:33 +02:00
parent be4e943d73
commit bce1863bc9

View File

@ -1,6 +1,7 @@
{ stdenv
, lib
, buildDotnetModule
, dotnetCorePackages
, callPackage
, fetchFromGitHub
, ffmpeg
@ -22,13 +23,13 @@ let
in
buildDotnetModule rec {
pname = "famistudio";
version = "4.1.3";
version = "4.2.0";
src = fetchFromGitHub {
owner = "BleuBleu";
repo = "FamiStudio";
rev = "refs/tags/${version}";
hash = "sha256-bryxhminkrTVe5qhGeMStZp3NTHBREXrsUlyQkfPkao=";
hash = "sha256-ydEWLL05B86672j3MVo/90tgDHg8FJ2EZaesqrBZy4A=";
};
postPatch = let
@ -85,6 +86,8 @@ buildDotnetModule rec {
projectFile = "FamiStudio/${csprojName}.csproj";
nugetDeps = ./deps.nix;
dotnet-sdk = dotnetCorePackages.sdk_7_0;
dotnet-runtime = dotnetCorePackages.runtime_7_0;
executables = [ "FamiStudio" ];