foxmarks: init at 2.1.0 (#349592)

This commit is contained in:
Aleksana 2024-10-19 19:49:40 +08:00 committed by GitHub
commit 99e0ded438
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,30 @@
{
lib,
fetchFromGitHub,
rustPlatform,
sqlite,
}:
rustPlatform.buildRustPackage rec {
pname = "foxmarks";
version = "2.1.0";
src = fetchFromGitHub {
owner = "zer0-x";
repo = "foxmarks";
rev = "v${version}";
hash = "sha256-tkmmu6A7vqK4yO9zHjVEeACaOHP3+hJQLBK7p/Svn7Q=";
};
cargoHash = "sha256-m3JtibgNHsZScxziNEu1ycslJocBXRbtloMWE0G5ZyM=";
buildInputs = [ sqlite ];
meta = {
description = "CLI read-only interface for Mozilla Firefox's bookmarks";
homepage = "https://github.com/zer0-x/foxmarks";
changelog = "https://github.com/zer0-x/foxmarks/blobl/v${version}/CHANGELOG.md";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ loicreynier ];
};
}