Skip to content

Commit

Permalink
garnet: 1.0.18 -> 1.0.36 (NixOS#354331)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbsds authored Nov 14, 2024
2 parents 614f5b5 + 182f3d0 commit 0d9b400
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 20 deletions.
31 changes: 16 additions & 15 deletions pkgs/by-name/ga/garnet/deps.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 11 additions & 5 deletions pkgs/by-name/ga/garnet/package.nix
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
{
lib,
buildDotnetModule,
fetchFromGitHub,
dotnetCorePackages,
fetchFromGitHub,
nix-update-script,
}:

buildDotnetModule rec {
pname = "garnet";
version = "1.0.18";
version = "1.0.36";

src = fetchFromGitHub {
owner = "microsoft";
repo = "garnet";
rev = "v${version}";
hash = "sha256-vKjFUa/f/nsBaBkxwIhtMox2qtbBzy+ipuqFHtLhbr4=";
rev = "refs/tags/v${version}";
hash = "sha256-iWfRj1PN54TXiNMSYYNq0rjA50ag0lyEJdDFw0cMv4g=";
};

projectFile = "main/GarnetServer/GarnetServer.csproj";
nugetDeps = ./deps.nix;

dotnet-sdk = with dotnetCorePackages; combinePackages [ sdk_6_0 sdk_8_0 ];
dotnet-sdk =
with dotnetCorePackages;
combinePackages [
sdk_6_0
sdk_8_0
];
dotnet-runtime = dotnetCorePackages.runtime_8_0;

dotnetBuildFlags = [
Expand Down

0 comments on commit 0d9b400

Please sign in to comment.