mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
cf9c82a242
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
31 lines
728 B
Nix
31 lines
728 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|