mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 12:53:54 +00:00
foxmarks: init at 2.1.0
This commit is contained in:
parent
c4a6d1bbde
commit
5da4af11d1
30
pkgs/by-name/fo/foxmarks/package.nix
Normal file
30
pkgs/by-name/fo/foxmarks/package.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user