nixpkgs/pkgs/by-name/sq/sqlpage/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

101 lines
3.5 KiB
Nix
Raw Normal View History

2024-11-06 20:41:37 +00:00
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
sqlite,
zstd,
fetchurl,
2023-08-20 09:34:24 +00:00
}:
let
apexcharts = fetchurl {
2024-09-05 17:26:32 +00:00
url = "https://cdn.jsdelivr.net/npm/apexcharts@3.52.0/dist/apexcharts.min.js";
hash = "sha256-2sxp9+shRA5LMxzhgx+fpeQPIY2ZWgBdt4mp5V2Yn+E=";
2023-08-20 09:34:24 +00:00
};
tablerCss = fetchurl {
2023-11-10 20:38:32 +00:00
url = "https://cdn.jsdelivr.net/npm/@tabler/core@1.0.0-beta20/dist/css/tabler.min.css";
2024-06-05 23:50:38 +00:00
hash = "sha256-lS3nKxMMZiKIRJG7UgUonOHYuvHgW5eckEjvHMYxb9Q=";
2023-08-20 09:34:24 +00:00
};
tablerVendorsCss = fetchurl {
2023-11-10 20:38:32 +00:00
url = "https://cdn.jsdelivr.net/npm/@tabler/core@1.0.0-beta20/dist/css/tabler-vendors.min.css";
2024-06-05 23:50:38 +00:00
hash = "sha256-Aa7AUOaz6hJLiUzQStZTy2VPOZyg0ViSo2MCzpDU1tY=";
2023-08-20 09:34:24 +00:00
};
tablerJs = fetchurl {
2023-11-10 20:38:32 +00:00
url = "https://cdn.jsdelivr.net/npm/@tabler/core@1.0.0-beta20/dist/js/tabler.min.js";
2024-06-05 23:50:38 +00:00
hash = "sha256-ygO5OTRUtYxDDkERRwBCfq+fmakhM6ybwfl6gCCPlAQ=";
2023-08-20 09:34:24 +00:00
};
listJsFixed = fetchurl {
2023-11-10 20:38:32 +00:00
url = "https://cdn.jsdelivr.net/npm/list.js-fixed@2.3.4/dist/list.min.js";
2024-06-05 23:50:38 +00:00
hash = "sha256-sYy7qNJW7RTuaNA0jq6Yrtfs57ypYrItZ3f8T7kqfPM=";
2023-08-20 09:34:24 +00:00
};
tablerIcons = fetchurl {
2024-08-02 18:04:31 +00:00
url = "https://cdn.jsdelivr.net/npm/@tabler/icons-sprite@3.10.0/dist/tabler-sprite.svg";
hash = "sha256-lEUAtxI+NffqLDllirLgcCRjEgbeCaz9Gkn3Tu9e9F4=";
2024-06-05 23:50:38 +00:00
};
tomselect = fetchurl {
url = "https://cdn.jsdelivr.net/npm/tom-select@2.3.1/dist/js/tom-select.popular.min.js";
hash = "sha256-51NcdIM8GseVFFmg8mUWDxfhjLCA+n8kw/Ojyo+6Hjk=";
2023-08-20 09:34:24 +00:00
};
in
rustPlatform.buildRustPackage rec {
pname = "sqlpage";
2024-10-29 04:22:53 +00:00
version = "0.29.0";
2023-08-20 09:34:24 +00:00
src = fetchFromGitHub {
owner = "lovasoa";
repo = "SQLpage";
rev = "v${version}";
2024-10-29 04:22:53 +00:00
hash = "sha256-wI+nXrjX98vqyCE6Ofa5KxKUvpLfHqd7KFCsILuOnGk=";
2023-08-20 09:34:24 +00:00
};
postPatch = ''
substituteInPlace sqlpage/apexcharts.js \
2024-09-05 17:26:32 +00:00
--replace-fail '/* !include https://cdn.jsdelivr.net/npm/apexcharts@3.52.0/dist/apexcharts.min.js */' \
2023-08-20 09:34:24 +00:00
"$(cat ${apexcharts})"
substituteInPlace sqlpage/sqlpage.css \
2024-06-05 23:50:38 +00:00
--replace-fail '/* !include https://cdn.jsdelivr.net/npm/@tabler/core@1.0.0-beta20/dist/css/tabler.min.css */' \
2023-08-20 09:34:24 +00:00
"$(cat ${tablerCss})"
substituteInPlace sqlpage/sqlpage.css \
2024-06-05 23:50:38 +00:00
--replace-fail '/* !include https://cdn.jsdelivr.net/npm/@tabler/core@1.0.0-beta20/dist/css/tabler-vendors.min.css */' \
2023-08-20 09:34:24 +00:00
"$(cat ${tablerVendorsCss})"
substituteInPlace sqlpage/sqlpage.js \
2024-06-05 23:50:38 +00:00
--replace-fail '/* !include https://cdn.jsdelivr.net/npm/@tabler/core@1.0.0-beta20/dist/js/tabler.min.js */' \
2023-08-20 09:34:24 +00:00
"$(cat ${tablerJs})"
substituteInPlace sqlpage/sqlpage.js \
2024-06-05 23:50:38 +00:00
--replace-fail '/* !include https://cdn.jsdelivr.net/npm/list.js-fixed@2.3.4/dist/list.min.js */' \
2023-08-20 09:34:24 +00:00
"$(cat ${listJsFixed})"
substituteInPlace sqlpage/tabler-icons.svg \
2024-08-02 18:04:31 +00:00
--replace-fail '/* !include https://cdn.jsdelivr.net/npm/@tabler/icons-sprite@3.10.0/dist/tabler-sprite.svg */' \
2023-08-20 09:34:24 +00:00
"$(cat ${tablerIcons})"
2024-06-05 23:50:38 +00:00
substituteInPlace sqlpage/tomselect.js \
--replace-fail '/* !include https://cdn.jsdelivr.net/npm/tom-select@2.3.1/dist/js/tom-select.popular.min.js */' \
"$(cat ${tomselect})"
2024-11-06 20:41:37 +00:00
'';
2023-08-20 09:34:24 +00:00
2024-10-29 04:22:53 +00:00
cargoHash = "sha256-/B8tayEbyOsc0/po1YQKtp694X12B3I50OU4cMwJo8Q=";
2023-08-20 09:34:24 +00:00
nativeBuildInputs = [
pkg-config
];
buildInputs = [
sqlite
zstd
];
2023-08-20 09:34:24 +00:00
env = {
ZSTD_SYS_USE_PKG_CONFIG = true;
};
meta = {
description = "SQL-only webapp builder, empowering data analysts to build websites and applications quickly";
homepage = "https://github.com/lovasoa/SQLpage";
changelog = "https://github.com/lovasoa/SQLpage/blob/${src.rev}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dit7ya ];
2023-11-23 21:09:35 +00:00
mainProgram = "sqlpage";
2023-08-20 09:34:24 +00:00
};
}