d5f4a57cbf
GitOrigin-RevId: ce5e4a6ef2e59d89a971bc434ca8ca222b9c7f5e
28 lines
684 B
Nix
28 lines
684 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "turso-cli";
|
|
version = "0.79.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tursodatabase";
|
|
repo = "turso-cli";
|
|
rev = "v${version}";
|
|
hash = "sha256-5ucStAFe3lZgnGMI0fRw1E4T60+9nglNbZnzrjRmRgk=";
|
|
};
|
|
|
|
vendorHash = "sha256-+F9I6+f7Sm5qhBAoXCMKjV/jFY0fyVIk0NKBQNNI+qM=";
|
|
|
|
# Test_setDatabasesCache fails due to /homeless-shelter: read-only file system error.
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "This is the command line interface (CLI) to Turso.";
|
|
homepage = "https://turso.tech";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [zestsystem];
|
|
};
|
|
}
|