571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, nixosTests
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "ferretdb";
|
|
version = "1.24.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "FerretDB";
|
|
repo = "FerretDB";
|
|
rev = "v${version}";
|
|
hash = "sha256-WMejspnk2PvJhvNGi4h+DF+fzipuOMcS1QWim5DnAhQ=";
|
|
};
|
|
|
|
postPatch = ''
|
|
echo v${version} > build/version/version.txt
|
|
echo nixpkgs > build/version/package.txt
|
|
'';
|
|
|
|
vendorHash = "sha256-GT6e9yd6LF6GFlGBWVAmcM6ysB/6cIGLbnM0hxfX5TE=";
|
|
|
|
CGO_ENABLED = 0;
|
|
|
|
subPackages = [ "cmd/ferretdb" ];
|
|
|
|
# tests in cmd/ferretdb are not production relevant
|
|
doCheck = false;
|
|
|
|
# the binary panics if something required wasn't set during compilation
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
$out/bin/ferretdb --version | grep ${version}
|
|
'';
|
|
|
|
passthru.tests = nixosTests.ferretdb;
|
|
|
|
meta = with lib; {
|
|
description = "Truly Open Source MongoDB alternative";
|
|
mainProgram = "ferretdb";
|
|
changelog = "https://github.com/FerretDB/FerretDB/releases/tag/v${version}";
|
|
homepage = "https://www.ferretdb.com/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ dit7ya noisersup julienmalka ];
|
|
};
|
|
}
|