nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, buildDunePackage, dune_3 }:
2
3buildDunePackage rec {
4 pname = "xdg";
5 inherit (dune_3) src version;
6
7 duneVersion = "3";
8 minimalOCamlVersion = "4.08";
9
10 dontAddPrefix = true;
11
12 meta = with lib; {
13 description = "XDG Base Directory Specification";
14 inherit (dune_3.meta) homepage;
15 maintainers = [ ];
16 license = licenses.mit;
17 };
18}