Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
107 lines
2.5 KiB
Nix
107 lines
2.5 KiB
Nix
{
|
|
lib,
|
|
flutter335,
|
|
fetchFromGitHub,
|
|
gst_all_1,
|
|
libunwind,
|
|
orc,
|
|
webkitgtk_4_1,
|
|
autoPatchelfHook,
|
|
xorg,
|
|
jdk,
|
|
zlib,
|
|
runCommand,
|
|
yq-go,
|
|
_experimental-update-script-combinators,
|
|
gitUpdater,
|
|
}:
|
|
|
|
let
|
|
zlib-root = runCommand "zlib-root" { } ''
|
|
mkdir $out
|
|
ln -s ${zlib.dev}/include $out/include
|
|
ln -s ${zlib}/lib $out/lib
|
|
'';
|
|
|
|
version = "0.26.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "saber-notes";
|
|
repo = "saber";
|
|
tag = "v${version}";
|
|
hash = "sha256-XIDz2WcPZfiW4DE4/CZqmk/Lyu164GIS3moAJG9sbk0=";
|
|
};
|
|
in
|
|
flutter335.buildFlutterApplication {
|
|
pname = "saber";
|
|
inherit version src;
|
|
|
|
gitHashes = lib.importJSON ./gitHashes.json;
|
|
|
|
pubspecLock = lib.importJSON ./pubspec.lock.json;
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook ];
|
|
|
|
buildInputs = [
|
|
gst_all_1.gstreamer
|
|
gst_all_1.gst-plugins-base
|
|
libunwind
|
|
orc
|
|
webkitgtk_4_1
|
|
xorg.libXmu
|
|
jdk
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs patches/remove_proprietary_dependencies.sh
|
|
patches/remove_proprietary_dependencies.sh
|
|
'';
|
|
|
|
flutterBuildFlags = [ "--dart-define=DIRTY=false" ];
|
|
|
|
env.ZLIB_ROOT = zlib-root;
|
|
|
|
postInstall = ''
|
|
install -Dm0644 flatpak/com.adilhanney.saber.desktop $out/share/applications/saber.desktop
|
|
install -Dm0644 assets/icon/icon.svg $out/share/icons/hicolor/scalable/apps/com.adilhanney.saber.svg
|
|
install -Dm0644 flatpak/com.adilhanney.saber.metainfo.xml -t $out/share/metainfo
|
|
'';
|
|
|
|
# Remove libpdfrx.so's reference to the /build/ directory
|
|
preFixup = ''
|
|
patchelf --shrink-rpath --allowed-rpath-prefixes "$NIX_STORE" $out/app/saber/lib/lib*.so
|
|
'';
|
|
|
|
passthru = {
|
|
pubspecSource =
|
|
runCommand "pubspec.lock.json"
|
|
{
|
|
inherit src;
|
|
nativeBuildInputs = [ yq-go ];
|
|
}
|
|
''
|
|
yq eval --output-format=json --prettyPrint $src/pubspec.lock > "$out"
|
|
'';
|
|
updateScript = _experimental-update-script-combinators.sequence [
|
|
(gitUpdater { rev-prefix = "v"; })
|
|
(_experimental-update-script-combinators.copyAttrOutputToFile "saber.pubspecSource" ./pubspec.lock.json)
|
|
{
|
|
command = [ ./update-gitHashes.py ];
|
|
supportedFeatures = [ "silent" ];
|
|
}
|
|
];
|
|
};
|
|
|
|
meta = {
|
|
description = "Cross-platform open-source app built for handwriting";
|
|
homepage = "https://github.com/saber-notes/saber";
|
|
mainProgram = "saber";
|
|
license = with lib.licenses; [ gpl3Plus ];
|
|
maintainers = [ ];
|
|
platforms = [
|
|
"aarch64-linux"
|
|
"x86_64-linux"
|
|
];
|
|
};
|
|
}
|