ferretdb: 1.9.0 -> 1.10.1 (#255873)

This commit is contained in:
Patryk Kwiatek 2023-09-19 20:46:33 +00:00 committed by GitHub
parent cf62747511
commit 0b05535ac3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,17 @@
{ lib
, buildGoModule
, buildGo121Module
, fetchFromGitHub
}:
buildGoModule rec {
buildGo121Module rec {
pname = "ferretdb";
version = "1.9.0";
version = "1.10.1";
src = fetchFromGitHub {
owner = "FerretDB";
repo = "FerretDB";
rev = "v${version}";
hash = "sha256-cDXdTFgSf126BuPG2h0xZFUTCgyg8IVmNySCQyJV4T4=";
hash = "sha256-Pw3rusnFYlVPL55dj7VM8kGxE2c+72jgEXCoS4+hufY=";
};
postPatch = ''
@ -19,14 +19,12 @@ buildGoModule rec {
echo nixpkgs > build/version/package.txt
'';
vendorHash = "sha256-mzgj5VBggAqCFlLUcNE03B9jFHLKgfTzH6LI9wTe6Io=";
vendorHash = "sha256-1hkJMkMgDrjOgKgGX96hv5PALqx0KyjUZXXiIvUh5VA=";
CGO_ENABLED = 0;
subPackages = [ "cmd/ferretdb" ];
tags = [ "ferretdb_tigris" ];
# tests in cmd/ferretdb are not production relevant
doCheck = false;