{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / servers / sql / gluesql / default.nix
blob7d49107de2235b634d6f69477d54ea2c4534d407
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 , nix-update-script
5 }:
7 let
8   pname = "gluesql";
9   version = "0.14.0";
11 rustPlatform.buildRustPackage {
12   inherit pname version;
14   src = fetchFromGitHub {
15     owner = "gluesql";
16     repo = pname;
17     rev = "v${version}";
18     hash = "sha256-z2fpyPJfyPtO13Ly7XRmMW3rp6G3jNLsMMFz83Wmr0E=";
19   };
21   cargoHash = "sha256-xInwN/wZpHD3/vKcA+oYL9tmSD7P7/L8ZZOXZq0gkac=";
23   passthru.updateScript = nix-update-script { };
25   meta = with lib; {
26     description = "GlueSQL is quite sticky. It attaches to anywhere";
27     homepage = "https://github.com/gluesql/gluesql";
28     license = licenses.asl20;
29     maintainers = with maintainers; [ happysalada ];
30     platforms = platforms.all;
31   };