mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
19 lines
379 B
Nix
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;
|
|
};
|
|
}
|