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

bundlerApp {
  pname = "cddl";

  inherit ruby;
  gemdir = ./.;
  exes = [ "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 ];
    platforms   = platforms.unix;
  };
}