nixpkgs/pkgs/development/nim-packages/parsetoml/default.nix
2023-06-14 15:15:21 +01:00

22 lines
472 B
Nix

{ lib, buildNimPackage, fetchFromGitHub }:
buildNimPackage rec {
pname = "parsetoml";
version = "0.7.0";
src = fetchFromGitHub {
owner = "NimParsers";
repo = "parsetoml";
rev = "v${version}";
hash = "sha256-jtqn59x2ZRRgrPir6u/frsDHnl4kvTJWpbejxti8aHY=";
};
meta = with lib;
src.meta // {
description = "A Nim library to parse TOML files";
license = [ licenses.mit ];
maintainers = with maintainers; [ sikmir ];
};
}