ocamlPackages.xdg: init at ${dune_3.version}

main
Guillaume Girol 2 years ago
parent 92e9415880
commit 5063e680eb
  1. 17
      pkgs/development/ocaml-modules/xdg/default.nix
  2. 2
      pkgs/top-level/ocaml-packages.nix

@ -0,0 +1,17 @@
{ lib, buildDunePackage, dune_3 }:
buildDunePackage rec {
pname = "xdg";
inherit (dune_3) src version;
duneVersion = "3";
dontAddPrefix = true;
meta = with lib; {
description = "XDG Base Directory Specification";
inherit (dune_3.meta) homepage;
maintainers = with lib.maintainers; [ ];
license = licenses.mit;
};
}

@ -1475,6 +1475,8 @@ let
x509 = callPackage ../development/ocaml-modules/x509 { };
xdg = callPackage ../development/ocaml-modules/xdg { };
xenstore = callPackage ../development/ocaml-modules/xenstore { };
xenstore_transport = callPackage ../development/ocaml-modules/xenstore_transport { };

Loading…
Cancel
Save