sabiql: init at 1.13.0 (#533499)

This commit is contained in:
isabel
2026-06-23 14:50:38 +00:00
committed by GitHub
+60
View File
@@ -0,0 +1,60 @@
{
fetchFromGitHub,
lib,
stdenv,
rustPlatform,
rustc,
graphviz,
postgresql,
xdg-utils,
makeBinaryWrapper,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "sabiql";
version = "1.13.0";
src = fetchFromGitHub {
owner = "riii111";
repo = "sabiql";
rev = "v${finalAttrs.version}";
hash = "sha256-HDaiCLu1L2aQ+9swQWWPzb9MWqI44ECf71KyhI43emk=";
};
cargoHash = "sha256-5o68x2pOe4ArDzPJmGI9ooqRgs8rEReSFnpT8TKItl4=";
# Upstream use latest rust version need to patch use nixpkgs version
postPatch = ''
sed -i 's/rust-version\s*=\s*".*"/rust-version = "${rustc.version}"/' Cargo.toml
'';
nativeBuildInputs = [
makeBinaryWrapper
];
postInstall =
let
runtimePathDeps = [
graphviz
postgresql
]
++ lib.optionals stdenv.hostPlatform.isLinux [ xdg-utils ];
in
''
wrapProgram $out/bin/sabiql \
--prefix PATH : ${lib.makeBinPath runtimePathDeps}
'';
passthru.updateScript = nix-update-script { };
__structuredAttrs = true;
meta = {
description = "Fast PostgreSQL TUI written in Rust. driver-less, vim-first, with ER diagrams. No database drivers, no setup, just psql";
mainProgram = "sabiql";
homepage = "https://github.com/riii111/sabiql";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ theeasternfurry ];
};
})