foxmarks: init at 2.1.0

This commit is contained in:
Loïc Reynier 2024-10-18 19:49:57 +02:00
parent c4a6d1bbde
commit 5da4af11d1
No known key found for this signature in database
GPG Key ID: 6213A7D3F83C856A

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 = pname;
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 ];
};
}