My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/cddl/default.nix

18 lines
444 B

{ 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;
};
}