mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-14 16:14:50 +00:00
30 lines
854 B
Nix
30 lines
854 B
Nix
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "minijinja";
|
|
version = "2.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mitsuhiko";
|
|
repo = "minijinja";
|
|
rev = version;
|
|
hash = "sha256-ctFer7KPvES/tSV2e3G3rRIe7z2U4wgViB2qxBZuTUM=";
|
|
};
|
|
|
|
cargoHash = "sha256-kDWmUg86aZP99ebkv/1aKT2YJv7DdTT5oxnegxpD9gQ=";
|
|
|
|
# The tests relies on the presence of network connection
|
|
doCheck = false;
|
|
|
|
cargoBuildFlags = "--bin minijinja-cli";
|
|
|
|
meta = with lib; {
|
|
description = "Command Line Utility to render MiniJinja/Jinja2 templates";
|
|
homepage = "https://github.com/mitsuhiko/minijinja";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ psibi ];
|
|
changelog = "https://github.com/mitsuhiko/minijinja/blob/${version}/CHANGELOG.md";
|
|
mainProgram = "minijinja-cli";
|
|
};
|
|
}
|