summary refs log tree commit diff
path: root/pkgs/development/tools/cddl/default.nix
blob: 60e7edc752007a0fe9cc7131eb1a831c2ead9cb0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "cddl";

  gemdir = ./.;
  exes = [ "cddl" ];

  passthru.updateScript = bundlerUpdateScript "cddl";

  meta = with lib; {
    description = "A parser, generator, and validator for CDDL";
    homepage    = https://rubygems.org/gems/cddl;
    license     = with licenses; mit;
    maintainers = with maintainers; [ fdns nicknovitski ];
    platforms   = platforms.unix;
  };
}