nixpkgs/pkgs/development/ocaml-modules/xdg/default.nix
2023-02-01 09:20:48 +01:00

19 lines
379 B
Nix

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