hayagriva: init at 0.3.0
This commit is contained in:
parent
d82b65d4dc
commit
f0f192cf13
2 changed files with 28 additions and 0 deletions
26
pkgs/tools/typesetting/hayagriva/default.nix
Normal file
26
pkgs/tools/typesetting/hayagriva/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib
|
||||
, rustPlatform
|
||||
, fetchCrate
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "hayagriva";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit pname version;
|
||||
hash = "sha256-zp7YfMmp16YRWNcOf5aVt1vXnL+23+DyFeFn7Gow7wM=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-jsVd4vyST563HiXvqCfiZ2oUhNXF4E8Y2HBLl5AtvRw=";
|
||||
|
||||
buildFeatures = [ "cli" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Work with references: Literature database management, storage, and citation formatting";
|
||||
homepage = "https://github.com/typst/hayagriva";
|
||||
changelog = "https://github.com/typst/hayagriva/releases/tag/v${version}";
|
||||
license = with licenses; [ asl20 mit ];
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
};
|
||||
}
|
|
@ -8314,6 +8314,8 @@ with pkgs;
|
|||
|
||||
harmonia = callPackage ../tools/package-management/harmonia { };
|
||||
|
||||
hayagriva = callPackage ../tools/typesetting/hayagriva { };
|
||||
|
||||
hcl2json = callPackage ../applications/misc/hcl2json { };
|
||||
|
||||
hcxtools = callPackage ../tools/security/hcxtools { };
|
||||
|
|
Loading…
Reference in a new issue