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
31 lines
728 B
Nix
31 lines
728 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
sqlite,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "foxmarks";
|
|
version = "2.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zer0-x";
|
|
repo = "foxmarks";
|
|
rev = "v${version}";
|
|
hash = "sha256-6lJ9acVo444RMxc3wUakBz4zT74oNUpwoP69rdf2mmE=";
|
|
};
|
|
|
|
cargoHash = "sha256-BAUqH2RVpLLXvN43J67xqtrQZT3OgNA9ot+joOB70DY=";
|
|
|
|
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 ];
|
|
};
|
|
}
|