ocamlPackages.xdg: init at ${dune_3.version}
This commit is contained in:
parent
92e9415880
commit
5063e680eb
2 changed files with 19 additions and 0 deletions
17
pkgs/development/ocaml-modules/xdg/default.nix
Normal file
17
pkgs/development/ocaml-modules/xdg/default.nix
Normal file
|
@ -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…
Reference in a new issue